Constructs a FloatQRDecomp instance of a given matrix.

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

Syntax

C#
public FloatQRDecomp(
	FloatMatrix A
)
Visual Basic (Declaration)
Public Sub New ( _
	A As FloatMatrix _
)
Visual C++
public:
FloatQRDecomp(
	FloatMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix to factor.

Remarks

By default, pivoting is done so that the entries along the diagonal of R are non-increasing.

Exceptions

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

See Also