Vectorization of For loop

2 views (last 30 days)
MahdiH
MahdiH on 14 Aug 2020
Commented: MahdiH on 16 Aug 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 Comments
Bruno Luong
Bruno Luong on 15 Aug 2020
You could do a hybrid method: for-loop with each iteration compute a chunk of 50 elements of d.
MahdiH
MahdiH on 16 Aug 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.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 14 Aug 2020
d = sum(b .* reshape(a, 1, 100, 100), [2 3]);

More Answers (1)

Bruno Luong
Bruno Luong on 14 Aug 2020
d = b(:,:)*a(:)
  1 Comment
MahdiH
MahdiH on 14 Aug 2020
Thanks Bruno for your smart answer.

Sign in to comment.

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!