SingularValueDecomposition<T>.LeftSingularVectors Property

Gets the left singular vectors of the decomposition.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Matrix<T> LeftSingularVectors { get; protected set; }

Property Value

Matrix<T>
A DenseMatrix<T>.

Remarks

This property returns the matrix U in the decomposition A= USVT.

If no left singular vectors were requested and the decomposition has been performed already, null is returned.

See Also