SpectralDecompositionDecompose(ReadOnlyComplexMatrix, Boolean, ComplexMatrix) Method
Computes eigenvalues and eigenvectors of the
specified Hermitian complex matrix.
Namespace: Novacta.Analytics.AdvancedAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
public static DoubleMatrix Decompose(
ReadOnlyComplexMatrix matrix,
bool lowerTriangularPart,
out ComplexMatrix eigenvectors
)
Public Shared Function Decompose (
matrix As ReadOnlyComplexMatrix,
lowerTriangularPart As Boolean,
<OutAttribute> ByRef eigenvectors As ComplexMatrix
) As DoubleMatrix
public:
static DoubleMatrix^ Decompose(
ReadOnlyComplexMatrix^ matrix,
bool lowerTriangularPart,
[OutAttribute] ComplexMatrix^% eigenvectors
)
static member Decompose :
matrix : ReadOnlyComplexMatrix *
lowerTriangularPart : bool *
eigenvectors : ComplexMatrix byref -> DoubleMatrix
- matrix ReadOnlyComplexMatrix
-
The matrix containing the lower or upper triangular part of the matrix
whose spectral decomposition must be computed.
- lowerTriangularPart Boolean
- true if matrix contains the lower
triangular part of the matrix to be decomposed;
false if matrix contains
its upper triangular part.
- eigenvectors ComplexMatrix
-
A matrix whose columns represent the eigenvectors
of the decomposed matrix.
DoubleMatrix
A diagonal matrix containing the eigenvalues
of the decomposed matrix, in ascending order.