PermutationMatrix.GetQRDecomposition Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetQRDecomposition() Returns the QR decomposition of the matrix.
GetQRDecomposition(Boolean) Returns the QR decomposition of the matrix.

GetQRDecomposition(Boolean)

Returns the QR decomposition of the matrix.
C#
public override QRDecomposition<double> GetQRDecomposition(
	bool overwriteMatrix
)

Parameters

overwriteMatrix  Boolean
A boolean value that indicates whether the contents of the matrix may be overwritten by the decomposition.

Return Value

QRDecomposition<Double>
An QRDecomposition<T> object that represents the QR decomposition of the matrix.

See Also