Click or drag to resize

DoubleQRDecomp(DoubleMatrix, Boolean, Boolean) Constructor

Constructs a DoubleQRDecomp instance of a given matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleQRDecomp(
	DoubleMatrix A,
	bool inPlace,
	bool dataCleansed
)

Parameters

A  DoubleMatrix
A matrix to factor.
inPlace  Boolean
If true, the QR decomposition will overwrite the input matrix A. If false the input matrix A will be preserved at the expense of making a copy of A. Note that if inPlace is true, the input matrix A will not be checked for valid input (NaN's and infinity's).
dataCleansed  Boolean
If true the matrix A is guareented to contain no NaN or Infinity values. Ignored if
C#
inPlace
.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the matrix contains any NaN values and inPlace is false.
Remarks
By default, pivoting is done so that the entries along the diagonal of R are non-increasing.
See Also