Click or drag to resize

MatrixMathSubtract Method

Calculates a-b and stores the result in matrix c.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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