Is there a clear and efficient way to find the eigenvalues and eigenvectors of a real, symmetric, very large, even 10000x10000 sparse matrix in Eigen3 ? For dense matrices, there exists an eigenvalue solver, but it does not use the matrix property, for example. it is a symmetry. In addition, I do not want to keep the matrix in a dense state.
Or (alternatively) is there a better (+ better documented) library for this?
source share