Home
last modified time | relevance | path

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

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DAbstractStorelessUnivariateStatistic.java89 incrementAll(values, begin, length); in evaluate()
125 public void incrementAll(double[] values) { in incrementAll() method in AbstractStorelessUnivariateStatistic
129 incrementAll(values, 0, values.length); in incrementAll()
144 public void incrementAll(double[] values, int begin, int length) { in incrementAll() method in AbstractStorelessUnivariateStatistic
DStorelessUnivariateStatistic.java46 void incrementAll(double[] values); in incrementAll() method
59 void incrementAll(double[] values, int start, int length); in incrementAll() method
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DKurtosis.java172 variance.incrementAll(values, begin, length); in evaluate()