SingularValueDecompositionDecompose(DoubleMatrix, DoubleMatrix, DoubleMatrix) Method

Computes the Singular Value Decomposition of the specified matrix.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static DoubleMatrix Decompose(
	DoubleMatrix matrix,
	out DoubleMatrix leftSingularVectors,
	out DoubleMatrix conjugateTransposedRightSingularVectors
)

Parameters

matrix  DoubleMatrix
The matrix to decompose.
leftSingularVectors  DoubleMatrix
The matrix whose columns represent the left singular vectors.
conjugateTransposedRightSingularVectors  DoubleMatrix
The matrix whose rows represent the conjugate transposed right singular vectors.

Return Value

DoubleMatrix
The diagonal matrix of singular values.

Exceptions

ArgumentNullExceptionmatrix is null.

See Also