Problem 3005. Recursive Standard Deviation
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 commentsProblem Recent Solvers18
Suggested Problems
-
Check to see if a Sudoku Puzzle is Solved
328 Solvers
-
Given a matrix, swap the 2nd & 3rd columns
1151 Solvers
-
Find the position of first minimum value in an integer array with numbers
178 Solvers
-
Given a number find two variables
56 Solvers
-
Max Change in Consecutive Elements
167 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!