how to avoid floating point error and figure out a way to break out of this loop such that it generates correct answer
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nitish Reddy Kotkur
el 21 de Oct. de 2019
Editada: Walter Roberson
el 18 de Mzo. de 2020
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 comentarios
David Hill
el 22 de Oct. de 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).
Respuesta aceptada
Christine Tobler
el 28 de Oct. de 2019
There has been a lot of research on how to deal with floating-point error in the Lanczos algorithm, see the Wikipedia page for some discussion.
However, even in exact arithmetic, you should only expect beta(j) to become zero reliably after having performed n iterations (where the matrix A is of size n-by-n). Now usually, the goal of the Lanczos algorithm is to converge in significantly fewer iterations than that, so this is not usually a good convergence criterion.
It's still a good idea to check if beta(j) has become zero, because this would be a breakdown condition - if beta(j) becomes zero, it means that a complete eigenspace of A has been constructed. Either all information you need is already contained in this space, or you need to restart another Lanczos iteration with a new random vector.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Function Creation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!