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:
Phil Steitz 2009-04-11 15:32:18 +00:00
parent 4095d7a029
commit 023345c2c0
1 changed files with 1 additions and 1 deletions

View File

@ -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;