MATLAB: How to calculate standard deviation for some SPECIFIC element (say starting from 601th to 650th element) of an array using MATLAB

arraymatrix manipulationstandard deviationstatistics

I need to calculate the standard deviation to differentiate between normal and struggle for my behavioral study.

Best Answer

s = std(V(601:650));