Description:
Calculate the product of two matrices or vectors.
Syntax:
mul(A, X)
Note:
The function calculates the product of multiplying vector/matrix A by vector/matrix X, during which vector X on the right will be automatically transposed.
Parameter:
A/X |
A matrix or a vector |
Return value:
Sequence
Example:
|
A |
|
1 |
[[3,5],[2,8]] |
|
2 |
[[4,6],[2,4]] |
|
3 |
=mul(A1,A2) |
|