All Projects → felipeZ → eigenvalues

felipeZ / eigenvalues

Licence: Apache-2.0 license
symmetric matrices algorithms to compute eigenvalue/eigenvector pairs

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to eigenvalues

mathematics-for-machine-learning-coursera
quizzes/assignments for mathematics for machine learning specialization on coursera
Stars: ✭ 264 (+915.38%)
Mutual labels:  linear-algebra, eigenvalues
SLICOT-Reference
SLICOT - A Fortran subroutines library for systems and control
Stars: ✭ 19 (-26.92%)
Mutual labels:  linear-algebra, eigenvalues
GenericSchur.jl
Julia package for Schur decomposition of matrices with generic element types
Stars: ✭ 14 (-46.15%)
Mutual labels:  linear-algebra, eigenvalues
ArnoldiMethod.jl
Implicitly Restarted Arnoldi Method, natively in Julia
Stars: ✭ 59 (+126.92%)
Mutual labels:  linear-algebra, eigenvalues
Gosl
Linear algebra, eigenvalues, FFT, Bessel, elliptic, orthogonal polys, geometry, NURBS, numerical quadrature, 3D transfinite interpolation, random numbers, Mersenne twister, probability distributions, optimisation, differential equations.
Stars: ✭ 1,629 (+6165.38%)
Mutual labels:  linear-algebra, eigenvalues
fflas-ffpack
FFLAS-FFPACK - Finite Field Linear Algebra Subroutines / Package
Stars: ✭ 44 (+69.23%)
Mutual labels:  linear-algebra
hicma
HiCMA: Hierarchical Computations on Manycore Architectures
Stars: ✭ 21 (-19.23%)
Mutual labels:  linear-algebra
sympiler
Sympiler is a Code Generator for Transforming Sparse Matrix Codes
Stars: ✭ 32 (+23.08%)
Mutual labels:  linear-algebra
vg
Vector-geometry toolbelt for 3D points and vectors
Stars: ✭ 106 (+307.69%)
Mutual labels:  linear-algebra
kaliningraph
🕸️ Graphs, finite fields and discrete dynamical systems in Kotlin
Stars: ✭ 62 (+138.46%)
Mutual labels:  linear-algebra
linearmap-family
Purely-functional, coordinate-free linear algebra
Stars: ✭ 22 (-15.38%)
Mutual labels:  linear-algebra
Undergraduate-in-Statistics
Using Computer with your Statistics Major Course
Stars: ✭ 57 (+119.23%)
Mutual labels:  linear-algebra
zalgebra
Linear algebra library for games and real-time graphics.
Stars: ✭ 129 (+396.15%)
Mutual labels:  linear-algebra
float
Single precision (float) matrices for R.
Stars: ✭ 41 (+57.69%)
Mutual labels:  linear-algebra
LAML
A stand-alone pure Java library for linear algebra and machine learning
Stars: ✭ 15 (-42.31%)
Mutual labels:  linear-algebra
magicl
Matrix Algebra proGrams In Common Lisp.
Stars: ✭ 186 (+615.38%)
Mutual labels:  linear-algebra
blaze tensor
3D Tensors for Blaze (https://bitbucket.org/blaze-lib/blaze)
Stars: ✭ 29 (+11.54%)
Mutual labels:  linear-algebra
fml
Fused Matrix Library
Stars: ✭ 24 (-7.69%)
Mutual labels:  linear-algebra
Learn-Machine-Learning-in-3-month
No description or website provided.
Stars: ✭ 35 (+34.62%)
Mutual labels:  linear-algebra
eigenlearning
codebase for "A Theory of the Inductive Bias and Generalization of Kernel Regression and Wide Neural Networks"
Stars: ✭ 44 (+69.23%)
Mutual labels:  eigenvalues

Build Status License crates.io badge docs

Eigenvalue Decomposition

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

Matrix Representation

The library examples represent H using the nalgebra DMatrix type, but the matrix H does not need to be dense. Sparse or other representations are handled by implementing the Matrixoperations trait.

Available Algorithms:

Note:

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].