Computes a QR decomposition of the given matrix.

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

Syntax

C#
public DoubleQRDecomp GetDecomp(
	DoubleMatrix A
)
Visual Basic (Declaration)
Public Function GetDecomp ( _
	A As DoubleMatrix _
) As DoubleQRDecomp
Visual C++
public:
DoubleQRDecomp^ GetDecomp(
	DoubleMatrix^ A
)

Parameters

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

Return Value

A QR decomposition of A.

See Also