Save old values in an iteration (while loop)
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mehdi
el 7 de Sept. de 2015
Respondida: Walter Roberson
el 8 de Sept. de 2015
Hi,
In Newton_Raphson iteration, I need to compare old and new values of X so that it stops when their difference is very small. How can I save old values? Thank you very much in advance.
0 comentarios
Respuesta aceptada
Walter Roberson
el 8 de Sept. de 2015
prev_value = inf;
while true
new_value = .... some calculation
if abs(prev_value - new_value) < YourTolerance
break;
end
prev_value = new_value;
end
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!