HomeSort by relevance Sort by last modified time
    Searched defs:incrementAll (Results 1 - 3 of 3) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
StorelessUnivariateStatistic.java 21 * {@link #increment} and {@link #incrementAll(double[])} methods for adding
46 void incrementAll(double[] values);
59 void incrementAll(double[] values, int start, int length);
AbstractStorelessUnivariateStatistic.java 27 * Provides default <code>evaluate()</code> and <code>incrementAll(double[])<code>
45 * then {@link #incrementAll(double[])}.</p>
71 * then {@link #incrementAll(double[], int, int)}.</p>
89 incrementAll(values, begin, length);
123 * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#incrementAll(double[])
125 public void incrementAll(double[] values) {
129 incrementAll(values, 0, values.length);
142 * @see org.apache.commons.math.stat.descriptive.StorelessUnivariateStatistic#incrementAll(double[], int, int)
144 public void incrementAll(double[] values, int begin, int length) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Kurtosis.java 172 variance.incrementAll(values, begin, length);

Completed in 631 milliseconds