Reduce one dimension of a array by using sum

25 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Star Strider
Star Strider il 19 Ott 2012
Modificato: Star Strider il 19 Ott 2012
If you are summing across the second dimension of your three-dimension array A, the easiest way would be to use the ‘dim’ argument of sum:
B = squeeze(sum(A,2))
Does this do what you want?

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 19 Ott 2012
A=rand(100,100,100);
out=sum(A,3)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by