How to make faster row-wise Matrix multiplication ?

Hi All,
I want to make my code run faster. I have to do row wise multiplication. But i do not want to use for loop.
For example
A =
11 11 6
7 11 9
2 2 2
4 11 5
7 11 11
B =
1 2 3
1 4 3
1 2 5
For i:1:5
A(i,:).*B
End
I want to skip the last for loop. As number of rows of A can grow upto 10,000
Any suggestion how to replace or make the code faster instead of using parfor?

 Accepted Answer

Andrei Bobrov
Andrei Bobrov on 22 Apr 2019
Edited: Andrei Bobrov on 22 Apr 2019
Just use:
out = permute(A,[3,2,1]).*B;

3 Comments

thanks for the reply. I did a mistake the B matrix was not write. I have updated my question

Sign in to comment.

More Answers (0)

Products

Release

R2019a

Community Treasure Hunt

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

Start Hunting!