By C# in Visual Studio on Win 7, I need to calculate mean and standard deviation for a large series of numbers. These numbers are read from a file. There may be ten housands or even more numbers. If I do not want to save them in a data structure such as array or list, because this may not be memory efficient, how to do the calculation efficently.
I also need to print the numbers to a file.
The answers at How to calculate a standard deviation [array] cannot help.
Any help would be appreciated !
Best