SingularValueDecompositionDecompose(ReadOnlyComplexMatrix, ComplexMatrix, ComplexMatrix) Method
Computes the Singular Value Decomposition of the
specified matrix.
Namespace: Novacta.Analytics.AdvancedAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
public static DoubleMatrix Decompose(
ReadOnlyComplexMatrix matrix,
out ComplexMatrix leftSingularVectors,
out ComplexMatrix conjugateTransposedRightSingularVectors
)
Public Shared Function Decompose (
matrix As ReadOnlyComplexMatrix,
<OutAttribute> ByRef leftSingularVectors As ComplexMatrix,
<OutAttribute> ByRef conjugateTransposedRightSingularVectors As ComplexMatrix
) As DoubleMatrix
public:
static DoubleMatrix^ Decompose(
ReadOnlyComplexMatrix^ matrix,
[OutAttribute] ComplexMatrix^% leftSingularVectors,
[OutAttribute] ComplexMatrix^% conjugateTransposedRightSingularVectors
)
static member Decompose :
matrix : ReadOnlyComplexMatrix *
leftSingularVectors : ComplexMatrix byref *
conjugateTransposedRightSingularVectors : ComplexMatrix byref -> DoubleMatrix
- 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.
DoubleMatrix
The diagonal matrix of singular values.