standard deviation of a 3d matrix

Hello!
I have a 3-D matrix (test = rand[3,3,4]) and I want to get the standard deviation of each cell going through the 3rd dimension. Sean de wrote before that to get the mean through the third dimension, I can simply plug in:
grid = mean(test,3);
Simply changing 'mean' to 'std' does not do the trick and other attempts I've made didn't go very far. Any suggestions?
Thanks! Donald

 Réponse acceptée

Oleg Komarov
Oleg Komarov le 5 Juil 2011

3 votes

std(test,[],3)
The second argument refers to wheter you want the std to be corrected for the degrees of freedom or not. For more info:
doc std

Plus de réponses (0)

Catégories

En savoir plus sur Elementary Math dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by