When you have a large set of data, it can be resource consuming to calculate standard deviation at every step. So why not calculate a recursive std deviation at step n given:
- mean at step n
- value of added point at step n
- mean and std at step (n-1)
PS1: We'll always consider a vector of length 2 to which we add a third value
PS2: There are two common definitions of stdandard deviation. If you look at the help section of matlab, i used the second definition
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers20
Suggested Problems
-
7483 Solvers
-
Return a list sorted by number of occurrences
2897 Solvers
-
Number of 1s in a binary string
11421 Solvers
-
Matrix with different incremental runs
593 Solvers
-
find the maximum element of the matrix
542 Solvers
More from this Author12
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!