Element Wise Multiplication for varying matrix sizes

8 views (last 30 days)
Hi.. Is there anyway i could do an Element Wise Multiplication of an array of 24 by 14 to 1 by 14? I need all 24 Rows to be multiplied element-wise to the other single row matrix.
If it can't be done, how should i modify my matrix to perform this operation?
Thanks!

Accepted Answer

Walter Roberson
Walter Roberson on 26 Nov 2013
FirstMatrix .* repmat(SecondVector, size(FirstMatrix,1), 1)

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!