https://github.com/yixuan/spectra.jl
Julia implementation of the Spectra library for large scale eigenvalue problems
https://github.com/yixuan/spectra.jl
Last synced: about 2 months ago
JSON representation
Julia implementation of the Spectra library for large scale eigenvalue problems
- Host: GitHub
- URL: https://github.com/yixuan/spectra.jl
- Owner: yixuan
- License: other
- Created: 2015-12-24T14:54:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-25T19:51:34.000Z (about 9 years ago)
- Last Synced: 2025-02-28T20:11:32.729Z (2 months ago)
- Language: Julia
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Spectra
A [Julia](http://julialang.org/) implementation of the
[Spectra](https://github.com/yixuan/spectra) library.```jl
using Spectrasrand(123)
n = 1000
M = randn(n, n)
M = M + M'
A = DenseMatProd(M)
symeigs(A; nev = 10, ncv = 30, tol = 1e-10)
```