How to break loop when successive values are too close

2 vues (au cours des 30 derniers jours)
SANDEEP SINGH RANA
SANDEEP SINGH RANA le 5 Juin 2021
Commenté : SALAH ALRABEEI le 5 Juin 2021
I want to exit from the loop when successive matrix value is too close.For example:. For n=1:100 If f(n+1)==f(n) Break; end; end; It also good if I compare upto 4 digits or some tolerance value. Is there any matlab function is there for it?

Réponse acceptée

SALAH ALRABEEI
SALAH ALRABEEI le 5 Juin 2021
check this example;
% examle
tol=1e-4
xold=1e10
for i =1:100
xnew = ....
if abs(xnew-xold) < tol
break
end
xold=xnew;
end

Plus de réponses (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 5 Juin 2021
Modifié(e) : Sulaymon Eshkabilov le 5 Juin 2021
In this case, it can be solved using round(D, n) to set up the tolerance value. Where n is correct decimal digits.

Catégories

En savoir plus sur Global or Multiple Starting Point Search dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by