MATLAB: Element Wise Multiplication for varying matrix sizes

arithmatic operationelementary operationsMATLAB

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!

Best Answer

FirstMatrix .* repmat(SecondVector, size(FirstMatrix,1), 1)