Standard deviation of a 1D array for a particular range

2 vues (au cours des 30 derniers jours)
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

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by