eigenvalues 0.1.3

algorithms to compute eigenvalue/eigenvectors of symmetric matrices
docs.rs failed to build eigenvalues-0.1.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: eigenvalues-0.4.0

Build Status License crates.io badge

Eigenvalue Decomposition

This package contains some implementations for computing the eigenvalues/eigenvectors of a symmetric matrix, implemented in Rust.

Available Algorithms:

  • Davidson using either Diagonal-Preconditioned-Residue (DPR) or Generalized Jacobi Davidson (GJD).

Note:

The Davidson method is suitable for diagonal-dominant symmetric matrices that are quite common in certain scientific problems like electronic structure. The Davidson method could be not practical for other kind of symmetric matrices.