How to break loop when successive values are too close

4 ビュー (過去 30 日間)
SANDEEP SINGH RANA
SANDEEP SINGH RANA 2021 年 6 月 5 日
コメント済み: SALAH ALRABEEI 2021 年 6 月 5 日
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?

採用された回答

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

その他の回答 (1 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 6 月 5 日
編集済み: Sulaymon Eshkabilov 2021 年 6 月 5 日
In this case, it can be solved using round(D, n) to set up the tolerance value. Where n is correct decimal digits.

カテゴリ

Help Center および File ExchangeGlobal or Multiple Starting Point Search についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by