Click or drag to resize

DoubleQRDecompServerGetDecomp(DoubleMatrix, Boolean, Boolean) Method

Computes a QR decomposition of the given matrix.

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

Parameters

A  DoubleMatrix
A matrix.
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). True if the matrix A is guaranteed to contain only numeric values. Ignored if
C#
inPlace
. The server objects InPlace property will be set to this input value.
dataCleansed  Boolean

[Missing <param name="dataCleansed"/> documentation for "M:CenterSpace.NMath.Core.DoubleQRDecompServer.GetDecomp(CenterSpace.NMath.Core.DoubleMatrix,System.Boolean,System.Boolean)"]

Return Value

DoubleQRDecomp
A QR decomposition of A.
See Also