EigenSystemGetEigenvalues(ComplexMatrix, ComplexMatrix) Method |
Computes the eigenvalues and eigenvectors for an complex general matrix A.
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public ComplexMatrix GetEigenvalues(
ComplexMatrix A,
out ComplexMatrix EigenVectors
)
Public Function GetEigenvalues (
A As ComplexMatrix,
<OutAttribute> ByRef EigenVectors As ComplexMatrix
) As ComplexMatrix
Request Example
View SourceParameters
- A ComplexMatrix
- The complex general matrix A.
- EigenVectors ComplexMatrix
- The eigenvectors.
Return Value
ComplexMatrixThe eigenvalues.
See Also