MATLAB: Left eigenvectors using eigs with sparse matrices

eigenvectorsMATLABsparse matrices

Is there any way of using eigs (not eig) to calculate left eigenvectors of a sparse matrix?

Best Answer

Here M is your matrix
[right_eig_vectors, eig_val, left_eig_vectors] = eig(M);
Related Question