Builds a decomposition for the matrix A.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void Factor(
	DoubleMatrix A,
	bool useDivideAndConquer
)
Visual Basic (Declaration)
Public Sub Factor ( _
	A As DoubleMatrix, _
	useDivideAndConquer As Boolean _
)
Visual C++
public:
void Factor(
	DoubleMatrix^ A, 
	bool useDivideAndConquer
)

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.
useDivideAndConquer
Type: System..::.Boolean
If true use the Divide and conquer algorithm

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the matrix contains any NaN values.

See Also