Reduce one dimension of a array by using sum
古いコメントを表示
Hello,
Can anyone show me how I can reduce one dimension of the following array without using for loops. Thanks!
A=rand(100,100,100);
for ith = 1:100
for jth = 1:100
B(ith,jth) = sum(A(ith,:,jth))
end
end
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2012 年 10 月 19 日
A=rand(100,100,100);
out=sum(A,3)
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!