RQDecomposition<T>.Deconstruct Method

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

Parameters

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

See Also