how to avoid floating point error and figure out a way to break out of this loop such that it generates correct answer
Ältere Kommentare anzeigen
function [] = lanczos(A, m)
this is a function whick takes A as input which is a matrix and reduces it to smaller size. And i have got a for loop
for j=2:inf
w = A*V(:,j) - beta(j)*V(:,j-1);
alpha(j) = w'*V(:,j);
w = w - alpha(j)*V(:,j);
beta(j+1) = norm(w,2);
loopcnt = loopcnt + 1;
if abs(beta(j+1)) = 0
break
end
end
now i need the control to come out of loop when beta(j+1) is equal to zero ,but its looping continuously may be because of some floating point error.so i tried something like this
if abs(beta(j+1)) < 0.0001 should come out of loop which worked fine for smaller matrix sizes.
but when matrix size got bigger even its not working and loop is running continuosly can some one suggest me a way to avoid this problem and run the loop properly and break it when beta(j+1) become zero
4 Kommentare
David Hill
am 22 Okt. 2019
If you want help, you need to provide more information on what all your variables are. You should use the code block so it is easy to cut and paste. I also recommend a while loop instead of the for loop you are using.
Nitish Reddy Kotkur
am 22 Okt. 2019
Bearbeitet: Walter Roberson
am 18 Mär. 2020
David Hill
am 22 Okt. 2019
j=2;
while abs(beta(j))>=0.0001
w = A*V(:,j) - beta(j)*V(:,j-1);
alpha(j) = w'*V(:,j);
w = w - alpha(j)*V(:,j);
beta(j+1) = norm(w,2);
j=j+1;
end
If you are sure abs(beta(j)) will approach zero, you could troubleshoot by printing beta(j+1) during each loop by removing the semicolon. You should also preallocate alpha and beta if you have some idea how many cycles the loop will make (it will dramatically increase the speed).
Nitish Reddy Kotkur
am 22 Okt. 2019
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!