SingularValueDecomposition<T>.RightSingularVectors Property

Gets the right singular vectors of the decomposition.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> RightSingularVectors { get; protected set; }

Property Value

Matrix<T>
a DenseMatrix<T>.

Remarks

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

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

See Also