Click or drag to resize

FloatHermitianFact(FloatHermitianMatrix, Boolean) Constructor

Constructs a FloatHermitianFact instance by factoring the given matrix. By default the condition number for the matrix will not be computed and will not be available from the ConditionNumber method.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatHermitianFact(
	FloatHermitianMatrix A,
	bool estimateConditionNumber
)

Parameters

A  FloatHermitianMatrix
The matrix to factor. The matrix is assumed to be Hermitian.
estimateConditionNumber  Boolean
If true the condition number for the matrix will be estimated. This is a rather computationally expensive operation for large matrices.
Remarks
Only the upper triangular part of the matrix A are referenced.
See Also