eigenvalues 0.2.0

algorithms to compute eigenvalue/eigenvectors of symmetric matrices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*!

## Algorithms to compute (some) eigenvalues/eigenvectors for symmetric matrices.

*/
pub mod davidson;

/// Option to compute the lowest, highest or somewhere in the middle part of the
/// spectrum
#[derive(Clone,PartialEq)]
pub enum SpectrumTarget {
    Lowest,
    Highest,
    Target(f64),
}