how to find the sum of matrix?
古いコメントを表示
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))
回答 (2 件)
I'm assuming your matrices are the slices of a 3D array
M=A(:,:,k)
If so, just do
sum(A,3);
Sachin Ganjare
2012 年 10 月 17 日
0 投票
If I understand your question correctly:
sum_of_all_matrices = sum(A)
2 件のコメント
Sachin Ganjare
2012 年 10 月 17 日
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
2012 年 10 月 17 日
カテゴリ
ヘルプ センター および File Exchange で Sparse Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!