How to averaging each each row in cell array?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Tyann Hardyn
il 29 Giu 2022
Commentato: Tyann Hardyn
il 30 Giu 2022
Hi, Community...
I just want to ask, how to averaging each of my cell array according to the row?
i want to average dst_allfiles{1}(1), dst_allfiles{2}(1), dst_allfiles{3}(1)
then
mean(dst_allfiles{1}(2), dst_allfiles{2}(2), dst_allfiles{3}(2))
mean(dst_allfiles{1}(3), dst_allfiles{2}(3), dst_allfiles{3}(3))
............................
How to do that? Thank you....
0 Commenti
Risposta accettata
David Hill
il 30 Giu 2022
d=cell2mat(dst_allfiles);
m=mean(d,2);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Multidimensional Arrays 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!