Getting mean() to return a vector
Mostra commenti meno recenti
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
Risposte (1)
KSSV
il 22 Apr 2017
2 voti
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.
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!