Projects/pyblm
Projects
/
pyblm
Archived
4
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
pyblm/arpack/info.py

15 lines
298 B
Python

"""
Eigenvalue solver using iterative methods.
Find k eigenvectors and eigenvalues of a matrix A using the
Arnoldi/Lanczos iterative methods from ARPACK.
These methods are most useful for large sparse matrices.
- eigen(A,k)
- eigen_symmetric(A,k)
"""
global_symbols = []
postpone_import = 1