  | FloatQRDecompServerGetDecomp(FloatMatrix, Boolean) Method | 
            Computes a QR decomposition of the given matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic FloatQRDecomp GetDecomp(
	FloatMatrix A,
	bool inPlace
)
Public Function GetDecomp ( 
	A As FloatMatrix,
	inPlace As Boolean
) As FloatQRDecomp
public:
FloatQRDecomp^ GetDecomp(
	FloatMatrix^ A, 
	bool inPlace
)
member GetDecomp : 
        A : FloatMatrix * 
        inPlace : bool -> FloatQRDecomp Parameters
- A  FloatMatrix
 - 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).
            The server objects InPlace property will be set to this 
            input value.
 
Return Value
FloatQRDecompA QR decomposition of 
A.
See Also