SingularValueDecomposition<T>.Deconstruct Method

Deconstructs a singular value 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> leftSingularVectors,
	out Matrix<T> singularValueMatrix,
	out Matrix<T> rightSingularVectors
)

Parameters

leftSingularVectors  Matrix<T>
The matrix of left singular vectors.
singularValueMatrix  Matrix<T>
The matrix with the singular values on the diagonal.
rightSingularVectors  Matrix<T>
The matrix of right singular vectors.

See Also