how to partially multiply two diffferent dimention matrix
Show older comments
A[1,2500] and B[500,1]. how can i multiply 500 form A with B and then Skip 250 positions from A And multiply with B. e.g.., A[1 to 500]*B => store then A[250 to 750] * B=> store ,like wise
2 Comments
John D'Errico
on 14 May 2017
Interesting. I wonder why two different people are asking the same question?
kavinda hw
on 16 May 2017
Accepted Answer
More Answers (1)
Michael Saniuk
on 14 May 2017
>> A = rand(1250,1);
>> B = rand(1,500);
>> C = A(1:500,1).*B';
>> D = A(251:750,1).*B';
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!