How to compare previous iteration output with current iteration output?
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
I have a program with for loop having 1to 500. I need to compare the output of previous and current iteration, if the outputs are matching the program has to stop. Otherwise the loop has to continue till the match is achieved.
0 comentarios
Respuestas (1)
  Torsten
      
      
 el 20 de En. de 2023
        xold = 2;
error = 1;
while error > 1e-6
    x = xold - (xold^2-2)/(2*xold);
    error = abs(x-xold);
    xold = x;
end
x
0 comentarios
Ver también
Categorías
				Más información sobre Loops and Conditional Statements 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!

