MATLAB: Eigen value problem for sparse matrices

eigen valueeigen vectorout of memorysparse matrix

Hi, I need to calculate all eigen values and eigen vectors of a very large sparse matrix(above 20k*20k) but an out of memory error will occure! how can I overcome this problem? thank you.

Best Answer

Just use
eig(full(yourMatrix))
Related Question