MTM
times
element-wise multiplication
Calling Sequence
Parameters
Description
Examples
times(M1,M2)
M1
-
array or expression
M2
The times(M1,M2) function performs element-wise multiplication of M1 * M2. The result, R, is formed as R[i,j] = M1[i,j] * M2[i,j].
Arrays M1 and M2 must be the same size.
with⁡MTM:
M1≔Matrix⁡2,3,fill=3:
M2≔Matrix⁡2,3,fill=2:
times⁡M1,M2
666666
See Also
MTM[ldivide]
MTM[Minus]
MTM[mrdivide]
MTM[mtimes]
MTM[plus]
MTM[rdivide]
Download Help Document