Skip to content

Commit 3033a9c

Browse files
author
André Gaul
committed
Update README.md
1 parent 1db58df commit 3033a9c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
# PseudoPy
22

33
PseudoPy computes and visualizes the pseudospectrum of a matrix. It is a Python version of the original [eigtool](http://www.cs.ox.ac.uk/pseudospectra/eigtool/) by Thomas G. Wright. The algorithms used in this package can be found in the book [Spectra and pseudospectra](http://press.princeton.edu/titles/8113.html) by [Nick Trefethen](http://www.maths.ox.ac.uk/people/profiles/nick.trefethen) and [Mark Embree](http://www.caam.rice.edu/~embree/).
4+
5+
## Example
6+
The pseudospectrum of the Grcar matrix looks like this:
7+
8+
![Pseudospectrum of Grcar matrix](grcar.png)
9+
10+
The above figure can be created by running
11+
```python
12+
from pseudopy import demo
13+
demo.grcar_demo()
14+
```
15+
and the corresponding code of `grcar_demo` can be found in [pseudopy/demo.py](pseudopy/demo.py).

0 commit comments

Comments
 (0)