Kashish
Followers: 0 Following: 0
Feeds
已回答
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; ...
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 前 | 0