How to break loop when successive values are too close
Show older comments
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?
Accepted Answer
More Answers (1)
Sulaymon Eshkabilov
on 5 Jun 2021
Edited: Sulaymon Eshkabilov
on 5 Jun 2021
0 votes
In this case, it can be solved using round(D, n) to set up the tolerance value. Where n is correct decimal digits.
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!