Vectorization of For loop

2 vues (au cours des 30 derniers jours)
MahdiH
MahdiH le 14 Août 2020
Commenté : MahdiH le 16 Août 2020
Dear Matlab community,
Is it possible to vectorize the following for loop:
a = rand(100,100);
b = rand(500,100,100);
for i = 1:500
c = reshape(b(i, :, :),100,100);
d(i) = sum(sum(a.*c));
end
  14 commentaires
Bruno Luong
Bruno Luong le 15 Août 2020
You could do a hybrid method: for-loop with each iteration compute a chunk of 50 elements of d.
MahdiH
MahdiH le 16 Août 2020
@ Bruno, Thanks for bringing the hybrid idea, I like it. Also, I'm aware that you explained the RAM issue, but I was telling Walter that the RAM limitation make the for loop my best bet.

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 14 Août 2020
d = sum(b .* reshape(a, 1, 100, 100), [2 3]);
  1 commentaire
MahdiH
MahdiH le 14 Août 2020
Brilliant! Thanks Walter.

Connectez-vous pour commenter.

Plus de réponses (1)

Bruno Luong
Bruno Luong le 14 Août 2020
d = b(:,:)*a(:)
  1 commentaire
MahdiH
MahdiH le 14 Août 2020
Thanks Bruno for your smart answer.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by