MatrixMathMultiply(IROMatrixDouble, IROMatrixDouble, IMatrixDouble) Method |
Multiplies matrix a with matrix b and stores the result in matrix c.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void Multiply(
IROMatrix<double> a,
IROMatrix<double> b,
IMatrix<double> c
)
Parameters
- a IROMatrixDouble
- First multiplicant.
- b IROMatrixDouble
- Second multiplicant.
- c IMatrixDouble
- The matrix where to store the result. Has to be of dimension (a.Rows, b.Columns).
See Also