SingularValueDecompositionDecompose(ComplexMatrix, 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(
ComplexMatrix matrix,
out ComplexMatrix leftSingularVectors,
out ComplexMatrix conjugateTransposedRightSingularVectors
)
Public Shared Function Decompose (
matrix As ComplexMatrix,
<OutAttribute> ByRef leftSingularVectors As ComplexMatrix,
<OutAttribute> ByRef conjugateTransposedRightSingularVectors As ComplexMatrix
) As DoubleMatrix
public:
static DoubleMatrix^ Decompose(
ComplexMatrix^ matrix,
[OutAttribute] ComplexMatrix^% leftSingularVectors,
[OutAttribute] ComplexMatrix^% conjugateTransposedRightSingularVectors
)
static member Decompose :
matrix : ComplexMatrix *
leftSingularVectors : ComplexMatrix byref *
conjugateTransposedRightSingularVectors : ComplexMatrix byref -> DoubleMatrix
- matrix ComplexMatrix
- 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.