MatrixMathSubtract Method |
Calculates a-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 Subtract(
IROMatrix<double> a,
IROMatrix<double> b,
IMatrix<double> c
)
Parameters
- a IROMatrixDouble
- Minuend.
- b IROMatrixDouble
- Subtrahend.
- c IMatrixDouble
- The resultant matrix a-b. Has to be of same dimension as a and b.
See Also