summing element is a cell
Ältere Kommentare anzeigen
I have a 1x50 cell 'c', where each element in the cell is a nxn matrix, how can I sum all 50 matrices (c{1}+c{2}+c{3}+.....c{50}) without a loop?
1 Kommentar
Jos (10584)
am 8 Mär. 2019
"without a loop". Why?
Loops are efficient and easy and sometime the best option :-)
Antworten (1)
Stephen23
am 5 Mär. 2019
0 Stimmen
sum(cat(3,c{:}),3)
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!