Matrix<T>.GetQLDecomposition Method

Definition

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

Overload List

GetQLDecomposition() Returns the QL decomposition of the matrix.
GetQLDecomposition(Boolean) Returns the QL decomposition of the matrix.

GetQLDecomposition

Returns the QL decomposition of the matrix.
C#
public QLDecomposition<T> GetQLDecomposition()

Return Value

QLDecomposition<T>
An QLDecomposition<T> object that represents the QL decomposition of the matrix.

GetQLDecomposition(Boolean)

Returns the QL decomposition of the matrix.
C#
public virtual QLDecomposition<T> GetQLDecomposition(
	bool overwriteMatrix
)

Parameters

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

Return Value

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

See Also