Getting mean() to return a vector
Afficher commentaires plus anciens
I would like to get the mean of each row in nxn to be returned as a nx1 vector without looping. Is this possible?
Paul
Réponses (1)
KSSV
le 22 Avr 2017
2 votes
doc mean
it has option of providing dim you want. Let A be your n*n data.
mean(A) computes the mean of each column. mean(A,2) computes the mean of each row.
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!