Description:
Calculate the product of two matrices or vectors.
Syntax:
mul(A,B)
Note:
The function calculates the product of multiplication of vector/matrix A and vector/matrix B.
Parameters:
A/B |
A matrix or a vector |
Return value:
Sequence
Example:
|
A |
|
1 |
[[3,5],[2,8]] |
|
2 |
[[4,6],[2,4]] |
|
3 |
=mul(A1,A2) |
|