8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
There was an erro 10BC0 r while loading. Please reload this page.
Original ticket http://projects.scipy.org/numpy/ticket/1098 on 2009-04-29 by @thouis, assigned to @charris.
Variance calculation is inaccurate for arrays of large, identical values:
from numpy import * (ones(100000)10.0*20).var() 52756253943791624.0
There are more accurate algorithms for computing variance. One example from Welford (1962) is in the attached file.