Click or drag to resize

FloatComplexBandFactFactor(FloatComplexBandMatrix, Boolean) Method

Factors the matrix A so that self represents the LU factorization of A. 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 void Factor(
	FloatComplexBandMatrix A,
	bool estimateConditionNumber
)

Parameters

A  FloatComplexBandMatrix
The matrix to factor.
estimateConditionNumber  Boolean
If true the condition number for the matrix will be estimated. This is a rather computationally expensive operation for large matrices.
Exceptions
ExceptionCondition
MatrixNotSquareExceptionThrown if the factored matrix was not square.
See Also