Eigenvector without calling eigenvalues
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I would like to call a eigenvector of a matirx without calling its eigenvalues inside a function. Here I attach my code. Pl somebody help me.
function [out]=integration(hami1)
[V,L]=eig(hami1); %% Some error is here showing that L is unused in my code.
u=V(:,1)/sqrt(sum(V(:,1)));
w=diff(u,phi);
f=dot(u,w);
out=1/pi*1i*int(f,phi,0,2*pi);
end
0 commentaires
Réponse acceptée
Walter Roberson
le 1 Fév 2020
Given your question as asked, you will need to write your own code to somehow determine eigenvectors without calculating the corresponding eigenvalues.
However what you are seeing is a warning not an error, and most people would deal with it by coding
[V,~]=eig(hami1);
which tells MATLAB to tell eig that two outputs are requested (so that it knows to return eigenvectors in the first output), but that the second output will be ignored by the code.
3 commentaires
Walter Roberson
le 1 Fév 2020
integral() cannot call scripts so the relative speeds of scripts and functions is not relevant to the situation.
Plus de réponses (1)
Vladimir Sovkov
le 1 Fév 2020
- This is not an error but a warning that you do not use the eigenvalues, which influences nothing. If you want to avoid it, substitute the symbol "~" in place of "L".
- It looks that you use "phi" before defining it. This must be an error.
- Are you sure that your way of the eigenvector normalization is what you wanted? It looks quite unusual... The function "eig" is expected to produce the eigenvectors with unit algebraic norm already, at least for real symmetric matrices.
7 commentaires
Vladimir Sovkov
le 1 Fév 2020
This is problem-dependent. Sometimes it is correct, sometimes not. You can just calculate the norm of your case and see if it equals 1 or not. Maybe, you are right and this re-normalization is really needed. Anyway, it would not spoil the results, and maybe safer to keep it in the program.
Voir également
Catégories
En savoir plus sur Particle & Nuclear Physics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!