how to find the sum of matrix?
Ältere Kommentare anzeigen
hello, I have a loop as results of K = 1:19, a matrix A (k), my question is how to find the sum (M )of all matrix for each value of k, ie: find M = sum(A (k))
Antworten (2)
Sachin Ganjare
am 17 Okt. 2012
0 Stimmen
If I understand your question correctly:
sum_of_all_matrices = sum(A)
2 Kommentare
Sachin Ganjare
am 17 Okt. 2012
For Example:
a1 = [1 2 3]; a2 = [1 2 3]; a3 = [1 2 3]; a123 = [a1 a2 a3]; sum_out = sum(a123);
sum_out is sum of elements of matrix
BANI tita
am 17 Okt. 2012
Kategorien
Mehr zu Sparse 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!