Standard deviation of a 1D array for a particular range

2 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by