means of the 3rd dimension of a matrix
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Asl
am 21 Okt. 2013
Kommentiert: Walter Roberson
am 21 Okt. 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 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Okt. 2013
BB = mean(A, 3);
2 Kommentare
Walter Roberson
am 21 Okt. 2013
std(A,0,3)
As could be determined by looking at the documentation for std()
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Curve Fitting Toolbox 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!