Dropped extraneous parens.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@764209 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4095d7a029
commit
023345c2c0
|
@ -167,7 +167,7 @@ public class Skewness extends AbstractStorelessUnivariateStatistic implements Se
|
||||||
accum += Math.pow((values[i] - m), 2.0);
|
accum += Math.pow((values[i] - m), 2.0);
|
||||||
accum2 += (values[i] - m);
|
accum2 += (values[i] - m);
|
||||||
}
|
}
|
||||||
double stdDev = Math.sqrt((accum - (Math.pow(accum2, 2) / (length))) /
|
double stdDev = Math.sqrt((accum - (Math.pow(accum2, 2) / length)) /
|
||||||
(length - 1));
|
(length - 1));
|
||||||
|
|
||||||
double accum3 = 0.0;
|
double accum3 = 0.0;
|
||||||
|
|
Loading…
Reference in New Issue