Matrix<T>.GetLQDecomposition(Boolean) Method

Returns the LQ decomposition of the matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual LQDecomposition<T> GetLQDecomposition(
	bool overwriteMatrix
)

Parameters

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

Return Value

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

See Also