QLDecomposition<T>.Deconstruct Method

Deconstructs a QL decomposition into its component matrices.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public void Deconstruct(
	out LinearOperator<T> orthogonalFactor,
	out Matrix<T> triangularFactor
)

Parameters

orthogonalFactor  LinearOperator<T>
The orthogonal (unary) factor Q.
triangularFactor  Matrix<T>
The lower triangular factor R.

See Also