Constructs a DoubleComplexQRDecomp instance of a given matrix.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
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