Home
last modified time | relevance | path

Searched refs:standardizedSample (Results 1 – 1 of 1) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
DStatUtils.java654 double[] standardizedSample = new double[sample.length]; in normalize() local
658 standardizedSample[i] = (sample[i] - mean) / standardDeviation; in normalize()
660 return standardizedSample; in normalize()