Reduce one dimension of a array by using sum
Show older comments
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
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 19 Oct 2012
A=rand(100,100,100);
out=sum(A,3)
Categories
Find more on Loops and Conditional Statements 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!