left eigenvectors using eigs with sparse matrices

5 visualizzazioni (ultimi 30 giorni)
Is there any way of using eigs (not eig) to calculate left eigenvectors of a sparse matrix?

Risposta accettata

Ameer Hamza
Ameer Hamza il 31 Mar 2020
Modificato: Ameer Hamza il 31 Mar 2020
Here M is your matrix
[right_eig_vectors, eig_val, left_eig_vectors] = eig(M);
  2 Commenti
Alexander Holmes
Alexander Holmes il 31 Mar 2020
Sorry, I meant specifically using eigs, as I don't think eig works with sparse matrices.
Ameer Hamza
Ameer Hamza il 31 Mar 2020
In that case, you can find left eigenvectors like this
[right_eig_vector, rig_val] = eigs(M);
[left_eig_vector, ~] = eigs(M');

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Sparse Matrices in Help Center e File Exchange

Prodotti


Release

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by