How to find average of each column in every matrix within a cell
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
fernando aguirre
le 7 Juin 2018
Commenté : fernando aguirre
le 7 Juin 2018
I have a 1x20 cell called "transmission" and I would like to find the average of each column (separately) within each matrix in the cell. Each matrix is 12000x20
0 commentaires
Réponse acceptée
dpb
le 7 Juin 2018
mn=cellfun(@mean,c,'uniform',0); % c is the cell array
mean operates by column by default.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!