An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# Spectra

A [Julia](http://julialang.org/) implementation of the
[Spectra](https://github.com/yixuan/spectra) library.

```jl
using Spectra

srand(123)
n = 1000
M = randn(n, n)
M = M + M'
A = DenseMatProd(M)
symeigs(A; nev = 10, ncv = 30, tol = 1e-10)
```