1つの行列を等間隔の列に分割し、それぞれの要素を足し合わせるにはどうしたらよいですか?
18 views (last 30 days)
Show older comments
A = rand(10 ,1000)
のような10行、1000列の行列 A が存在した時、
B = A(: ,1:100) + A(: ,101:200) + ... + A(: ,901:1000)
となる行列B(10行、100列) を求めるにはどうしたらよいでしょうか。
0 Comments
Accepted Answer
Akira Agata
on 5 Sep 2018
reshape 関数をうまく使うと、以下のように簡単に求めることができます。
A2 = reshape(A,[10,100,10]);
B = sum(A2,3);
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!