Standard deviation of a 1D array for a particular range

2 views (last 30 days)
I would like to compute the standard deviation of my 1D array only for a particular range of indices.
my_array = [1 2 3 4 5 6 7 8 9 10];
i need to find Standard deviation for the elements of index 3 to 5 and 8 to 9.
i.e standard deviation of 3,4,5,8,9

Accepted Answer

Walter Roberson
Walter Roberson on 2 Jan 2021
std(my_array([3:5,8:9]))

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!