I need to know if a number compared to a set of numbers is outside of 1 stddev from the mean, etc..
|
2
|
|||||||||
|
|
|
While the sum of squares algorithm works fine most of the time, it can cause big trouble if you are dealing with very large numbers. You basically may end up with a negative variance... Plus, don't never, ever, ever, compute a^2 as pow(a,2), a * a is almost certainly faster. By far the best way of computing a standard deviation is Welford's method. My C is very rusty, but it could look something like:
EDIT: I've updated the code accoridng to Jason's remarks... |
||||||||||||||||
|
|
|
I would look at the C# Math class. |
||||
|
|
|
Here is code to calculate a standard deviation for a set of numbers. Once you have that, that gives you an upper and lower bound to compare the number to. |
||
|
|
|
|
You can avoid making two passes over the data by accumulating the mean and mean-square
and forming
A factor of BTW-- The first pass over the data in Demi and McWafflestix answers are hidden in the calls to |
||||||||||
|
|
|
Code snippet:
|
||||||||||||
|
