MATLAB: Multiplying a Matrix with every column of another matrix

matrix multiplicationvectorization

Suppose we have a matrix A with dimension a*n and another matrix B with dimensions n*b. I would like to multiply matrix A with every column in B to obtain a matrix C of dimension a*b, without using a for loop.

Best Answer

Do you mean you just want to do standard matrix multipication?
C = A * B
Or did I misunderstand?