MATLAB: How to multiply vector elements in the following fashion??

MATLABmultiplicationvector

Suppose I have A=[18 44 20 55] & B=[4 6]
Now I want C=[18*4 44*4 20*6 55*6]
i.e I want to multiply first element of B with first pair of elements in A
and second element of B with second pair of A and so on...

Best Answer

A=[18 44 20 55]
B=[4 6]
out=reshape(bsxfun(@times,A',B),1,[])