EigenSystemGetEigenvalues(SymmetricBandMatrix, Matrix) Method |
Computes all the eigenvalues and eigenvectors of
a real symmetric band matrix A.
Namespace: DotNumerics.LinearAlgebraAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Matrix GetEigenvalues(
SymmetricBandMatrix A,
out Matrix EigenVects
)
Public Function GetEigenvalues (
A As SymmetricBandMatrix,
<OutAttribute> ByRef EigenVects As Matrix
) As Matrix
Request Example
View SourceParameters
- A SymmetricBandMatrix
- The real symmetric band matrix A.
- EigenVects Matrix
- The eigenvectors.
Return Value
MatrixThe eigenvalues.
See Also