LQDecomposition<T>.Deconstruct Method

Deconstructs an LQ 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 Matrix<T> triangularFactor,
	out LinearOperator<T> orthogonalFactor
)

Parameters

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

See Also