pseudopy icon indicating copy to clipboard operation
pseudopy copied to clipboard

PseudoPy computes and visualizes the pseudospectrum of a matrix

Results 4 pseudopy issues
Sort by recently updated
recently updated
newest added

When I run demo.grcar_demo(), I got this error, even it is able to calculate and plot. Could anyone help with this? Thanks!

I want to find the pseudospectrum of a rectangular matrix but your code wants square error. I have read [here](http://people.maths.ox.ac.uk/~trefethen/publication/PDF/2002_101.pdf) by Trefethen that there is an algorithm. ``` import numpy...

why my kernel dies when I put : ``` n = 2000 mu = 0 sigma = 1 A = np.random.normal(mu, sigma, (n,n)) pseudo = NonnormalAuto(A, 1e-5, 1) pseudo.plot([10**k for...

It seems like the code for non-normal matrices requires the matrix to be non-singular. Am I missing something? If not, is there any plans to support non-singular matrices in the...