QLDecomposition<T>.Deconstruct Method

Deconstructs a QL decomposition into its component matrices.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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