SingularValueDecompositionDecompose(ReadOnlyComplexMatrix, ComplexMatrix, ComplexMatrix) 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(
	ReadOnlyComplexMatrix matrix,
	out ComplexMatrix leftSingularVectors,
	out ComplexMatrix conjugateTransposedRightSingularVectors
)

Parameters

matrix  ReadOnlyComplexMatrix
The matrix to decompose.
leftSingularVectors  ComplexMatrix
The matrix whose columns represent the left singular vectors.
conjugateTransposedRightSingularVectors  ComplexMatrix
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