HomeSort by relevance Sort by last modified time
    Searched refs:accum3 (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
Kurtosis.java 178 double accum3 = 0.0; local
180 accum3 += FastMath.pow(values[i] - mean, 4.0);
182 accum3 /= FastMath.pow(stdDev, 4.0d);
193 kurt = (coefficientOne * accum3) - termTwo;
Skewness.java 174 double accum3 = 0.0; local
177 accum3 += d * d * d;
179 accum3 /= variance * FastMath.sqrt(variance);
185 skew = (n0 / ((n0 - 1) * (n0 - 2))) * accum3;

Completed in 102 milliseconds