Package pulse.math
Class ZScore
- java.lang.Object
-
- pulse.math.ZScore
-
public class ZScore extends Object
This class finds peaks in data using the Z-score algorithm: https://en.wikipedia.org/wiki/Standard_score This splits the data into a number of population defined by the 'lag' number. A standard score is calculated as the difference of the current value and population mean divided by the population standard deviation.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
getFilteredAverage()
double[]
getFilteredStdev()
int[]
getSignals()
void
process(double[] input)
-