Click or drag to resize

MatrixMathSubtractProductFromSelf(IROMatrixDouble, IROMatrixDouble, IMatrixDouble) Method

Calculates c = c - ab

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void SubtractProductFromSelf(
	IROMatrix<double> a,
	IROMatrix<double> b,
	IMatrix<double> c
)

Parameters

a  IROMatrixDouble
First multiplicant.
b  IROMatrixDouble
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