This commit is contained in:
2024-12-03 13:25:10 +01:00
parent a9ba49505e
commit 034c7231ef
4 changed files with 4 additions and 50 deletions

View File

@@ -3,6 +3,8 @@
#include <stdbool.h>
#include <math.h>
#include <dataAcquisition.h>
int outlierCount;
// Variable definition
@@ -10,11 +12,7 @@ static float **readings;
static int sensorsNumber;
static int slidingWindowSize;
typedef struct {
float mean;
float standardDeviation;
int possibleFaultySensor;
} Metrics;
/**