[Solved] Power method, eigenvalues.
Afficher commentaires plus anciens
function l = ww(A,E)
n = length(A);
y = [];
x = [];
for i = 1:n % starting vector
x(i) = A(i,1);
end;
l = 0;
blad = E; % starting value of error
while blad>=E
for i = 1:n % A*x
y(i) = 0;
for j = 1:n
y(i) = y(i) + A(i,j)*x(j);
end;
end;
blad = l;
l = 0; % Rayleigh
m = 0;
for i = 1:n
l = l + x(i)*y(i);
m = m + x(i)*x(i);
end;
l = l/m; % eigenvalue
blad = abs(l - blad); % error
x = y;
end;
end
That's how I've tried to compute eigenvalues. It works for some matrices, but for:
A =
0 -0.3333 -0.3333
-0.3333 0 0.3333
0.6000 0.2000 0
it doesn't work. How can I fix that?
7 commentaires
Walter Roberson
le 12 Mai 2011
What difference do you see between what you expect and what is output?
Matt Fig
le 12 Mai 2011
And what is the input E??
John D'Errico
le 12 Mai 2011
Wow. Looks just like Fortran code to me.
Andrew Newell
le 13 Mai 2011
Fortran 77; 90 has vector operations.
Kamil
le 13 Mai 2011
Lorenzo Amabili
le 17 Mar 2017
Modifié(e) : Lorenzo Amabili
le 17 Mar 2017
@Kamil
@Teja Muppirala
how do you set E initially? I am sorry in case this question is silly but I am still new to this field. Thank you!
karim hamza
le 29 Avr 2017
i have an error [not enough input argument]
Réponse acceptée
Plus de réponses (3)
Andrew Newell
le 12 Mai 2011
While we wait for more information, here is a vectorized version of whatever your algorithm is doing:
function l = ww(A,E)
x = A(:,1);
l = 0;
blad = E; % starting value of error
while blad>=E
y = A*x;
blad = l;
l = x.*y; % Rayleigh
m = x.*x;
l = l/m; % eigenvalue
blad = abs(l - blad); % error
x = y;
end;
2 commentaires
devalaraju venkata naga amulya
le 24 Juil 2019
when i run the above code there is an error of input values A and E(in line function) can u help it with me im sorry im very new to the matlab
Dhruv Bhavsar
le 28 Août 2020
Try calling the function in the command prompt even if you get the above mentioned error.
If it works then copy the function at the bottom of a new script and write the codes to be implemented above the function defined.
I have attached my code file for your reference.
Kamil
le 13 Mai 2011
0 votes
Akankshya
le 13 Fév 2024
0 votes
function l = ww(A,E)
x = A(:,1);
l = 0;
blad = E; % starting value of error
while blad>=E
y = A*x;
blad = l;
l = x.*y; % Rayleigh
m = x.*x;
l = l/m; % eigenvalue
blad = abs(l - blad); % error
x = y;
end
Catégories
En savoir plus sur Linear Algebra dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!