ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Vector of eigenvalues of A. Size [n x 1].
Computes eigenvalues of general square matrix A.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
Parameters
- A
- Type: ILNumericsInArrayfcomplex
Input matrix. Size [n x n].
Return Value
Type: RetArrayfcomplexVector of eigenvalues of A. Size [n x 1].
Remarks
The eigenvalues of A are found by use of the Lapack functions dgeevx, sgeevx, cgeevx and zgeevx.
The vector returned is fcomplex, since A may be nonsymmetric. Use eigSymm(InArrayfcomplex) for computing real eigenvalues of symmetric matrices.
A is internally balanced first. This includes permutations and scaling of A in order to improve the conditioning of the eigenvalues.
[ILNumerics Computing Engine]
See Also
Reference
MathInternal.eig(InArrayfcomplex, OutArrayfcomplex)
MathInternal.eig(InArrayfcomplex, OutArrayfcomplex, MatrixProperties, Boolean)