pub fn matmul<T>(
lhs: &Array<T>,
rhs: &Array<T>,
optlhs: MatProp,
optrhs: MatProp,
) -> Array<T>where
T: HasAfEnum + FloatingPoint,
Expand description
Matrix multiple of two Arrays
§Parameters
lhs
is the Array on left hand siderhs
is the Array on right hand sideoptlhs
- Transpose left hand side before the function is performed, uses one of the values of MatPropoptrhs
- Transpose right hand side before the function is performed, uses one of the values of MatProp
§Return Values
The result Array of matrix multiplication