1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! Contains methods for solving eigenvalues, including general and //! symmetric/Hermitian eigenvalue problems. //! //! The eigenvalue problem is to find solution $\left(x, \lambda\right)$ to the problem: //! //! $$A \cdot x = \lambda \cdot x$$ //! //! for a square matrix \\(A\\). #![deny(missing_docs)] pub mod general; pub mod symmetric; pub mod types; pub use self::general::{Eigen}; pub use self::types::{EigenError}; pub use self::symmetric::{SymEigen};