mtimes
Matrix multiplication
mtimes(A, B)
A
should be m-by-n matrix andB
n-by-m matrix.- It returns the same result as
A * B
. - If one of the input arguments is scalar, it multiples the scalar with each element of the other input argument.
Matrix multiplication
A
should be m-by-n matrix and B
n-by-m matrix.A * B
.