MatrixMathSubtractProductFromSelf(IROMatrixDouble, Double, IMatrixDouble) Method |
Calculates c = c - ab
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void SubtractProductFromSelf(
IROMatrix<double> a,
double b,
IMatrix<double> c
)
Parameters
- a IROMatrixDouble
- First multiplicant.
- b Double
- Second multiplicant.
- c IMatrixDouble
- The matrix where to subtract the result of the multipication from. Has to be of dimension (a.Rows, b.Columns).
See Also