1つの行列を等間隔の列に分割し、それぞれの要素を足し合わせるにはどうしたらよいですか?
Show older comments
A = rand(10 ,1000)
のような10行、1000列の行列 A が存在した時、
B = A(: ,1:100) + A(: ,101:200) + ... + A(: ,901:1000)
となる行列B(10行、100列) を求めるにはどうしたらよいでしょうか。
Accepted Answer
More Answers (0)
Categories
Find more on 行列および配列 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!