MATLAB: Multiplication of matrix on matlab .*

.*MATLABmatrixmultiplication

a= ( 1 ; 2 ; 3 ; 4 ) b= (1 ; 5 ; 6 ; 7) f = a.*b = (1 ; 10 ; 6 18 ; 28)
what is the name of .* in maths

Best Answer

the (.*) indicates element-wise multiplication.