hello, how to solve the problem for matrix that a is diagonal matrix and u is random column matrix. I would like to solve the equation to get u=a*u inside the loop. But , I got index in the position 2 is invalid answer. Could you please help me?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Thin Rupar Win
am 26 Aug. 2020
Kommentiert: Thin Rupar Win
am 26 Aug. 2020
e=ones(10,1);
a=spdiags([-e 2*e -e],-1:1,10,10);
A=full(a);
u=rand(10,1);
for k=0:9
u(:,k+1)=(A*u(:,k))/norm(A*u(:,k));
end
0 Kommentare
Akzeptierte Antwort
Alan Stevens
am 26 Aug. 2020
Matlab's indexing starts at 1 not zero, so it is complaining at u(:,k) when k is zero.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Operating on Diagonal Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!