Click or drag to resize

MatrixMathIsEqual Method

Compares matrix a and matrix b. Takes the norm of matrix b times accuracy as threshold basis for comparing the elements.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static bool IsEqual(
	IROMatrix<double> a,
	IROMatrix<double> b,
	double accuracy
)

Parameters

a  IROMatrixDouble
The first matrix.
b  IROMatrixDouble
The second matrix. Basis for calculation of threshold.
accuracy  Double
The accuracy.

Return Value

Boolean

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.MatrixMath.IsEqual(Altaxo.Calc.LinearAlgebra.IROMatrix{System.Double},Altaxo.Calc.LinearAlgebra.IROMatrix{System.Double},System.Double)"]

See Also