Builds a decomposition for the matrix A in place. The contents of the matrix A are destroyed.

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

Syntax

C#
public void FactorInPlace(
	DoubleMatrix A
)
Visual Basic (Declaration)
Public Sub FactorInPlace ( _
	A As DoubleMatrix _
)
Visual C++
public:
void FactorInPlace(
	DoubleMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.

Remarks

The elements of the matrix are not checked for NaN and inifinite values.

See Also