How can I compute the mean of a cell matrix with different size ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ashkan Rigi
am 29 Apr. 2022
Kommentiert: Jan
am 29 Apr. 2022
Hi everybody. I have a matrix array (2dimensional) and I would like to compute the mean of each coulumn.
R{i,j}=cell array with 186*157 size. i=1:186,j=1:157.
1 Kommentar
Jan
am 29 Apr. 2022
What is the contents of the cell elements? Do you want to get the mean value of the elements, or between the elements?
Akzeptierte Antwort
Star Strider
am 29 Apr. 2022
Try something like this —
R = {rand(10,8)}
Rmeanc = cellfun(@mean,R, 'Unif',0)
Rmeanv = Rmeanc{:}
.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!