You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
+

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