means of the 3rd dimension of a matrix
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Asl
il 21 Ott 2013
Commentato: Walter Roberson
il 21 Ott 2013
AA = rand(3) I want a 2d matrix BB containing means of 3rd dimension of matrix A How I can do this smartly? Thanks
3 Commenti
Risposta accettata
Walter Roberson
il 21 Ott 2013
BB = mean(A, 3);
2 Commenti
Walter Roberson
il 21 Ott 2013
std(A,0,3)
As could be determined by looking at the documentation for std()
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Descriptive Statistics in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!