Hello,

I would like to find all the eigenvectors within a specific eigenvalue range. The matrix i am dealing with is large sparse symmetric matrix with size 162000 by 162000. I am using

Eigenvalue,Eigenvector=scipy.sparse.linalg.eigsh(A,k=10,sigma=105 to 205)

I cannot use sigma=105 to 205, i have written just for understanding my purpose. I want all the eigenvectors in the eigenvalue range of sigma=105 to 205. How can i do this in python?

Any help will be appreciated.

Thank You,

Paul Thomas

Similar questions and discussions