photo

Kashish


Last seen: 8 months ago Active since 2024

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Eigenvalues by power method
function [m,y_final]=power_method(A,x); m=0; n=length(x); y_final=zeros(n,1); y_final=x; tol=1e-3; while(1) mold=m; ...

8 months ago | 0