|
numerics 0.1.0
|
Full eigendecomposition result: A = V * diag(values) * V^T. More...
#include <jacobi_eig.hpp>
Public Attributes | |
| Vector | values |
| Eigenvalues in ascending order. | |
| Matrix | vectors |
| Eigenvectors as columns of an nxn orthogonal matrix. | |
| idx | sweeps = 0 |
| Number of Jacobi sweeps performed. | |
| bool | converged = false |
| Whether off-diagonal norm fell below tol. | |
Full eigendecomposition result: A = V * diag(values) * V^T.
Definition at line 30 of file jacobi_eig.hpp.
| bool num::EigenResult::converged = false |
Whether off-diagonal norm fell below tol.
Definition at line 34 of file jacobi_eig.hpp.
| idx num::EigenResult::sweeps = 0 |
Number of Jacobi sweeps performed.
Definition at line 33 of file jacobi_eig.hpp.
| Vector num::EigenResult::values |
Eigenvalues in ascending order.
Definition at line 31 of file jacobi_eig.hpp.
Referenced by num::lanczos().
| Matrix num::EigenResult::vectors |
Eigenvectors as columns of an nxn orthogonal matrix.
Definition at line 32 of file jacobi_eig.hpp.
Referenced by num::lanczos().