Group: | Operators |
See also: | + - .* / ^ % |
Function: | * | |
Description: | * computes the matrix multiplication of arrays. |
Usage: | z = y * x | |
Input: | ||
x | array | |
y | array | |
Output: | ||
z | array |
(#(3,4)~#(1,2))*#(2,3)
Contents of _tmp [1,] 9 [2,] 14
Group: | Operators |
See also: | + - .* / ^ % |