has use of "break" changed recenty?

24 views (last 30 days)
Robert
Robert on 11 Oct 2016
Commented: Rik on 13 Dec 2020
I have script which has functioned well under previous version of MatLab, recently updated the software to 2016a, and now get following error when running script.
Error: A BREAK may only be used within a FOR or WHILE loop, and then only within the same file as its corresponding FOR or WHILE statement.
Has the use of the break function changed?
  4 Comments
Adam Danz
Adam Danz on 13 Dec 2020
@Rik , what time machine did you use to access this documentation? Your comment is dated Dec-2020 but the online documentation prior to 15b was removed over the summer. Is this documentation a local copy?
Rik
Rik on 13 Dec 2020
Yes, all of this is from local copies (only some of these required a VM). So unfortunately the time machine in question is metaphorical. The Wayback Machine will probably not have many of these.

Sign in to comment.

Accepted Answer

Star Strider
Star Strider on 11 Oct 2016
Edited: Star Strider on 11 Oct 2016
It has, several versions ago. If you want to stop a script outside of a loop, use return instead of break. It does the same thing, and won’t throw an error.
To wit:
fprintf(1, 'Before ''return''\n')
return
fprintf(1, 'After ''return''\n')
EDIT Added demonstration code snippet.
  3 Comments
Star Strider
Star Strider on 11 Oct 2016
My pleasure.
If my Answer helped solve your problem, please Accept it.

Sign in to comment.

More Answers (0)

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!