invoking a matlab program without using "return" and "go to"

2 ビュー (過去 30 日間)
Zeynab Mousavikhamene
Zeynab Mousavikhamene 2021 年 5 月 25 日
回答済み: Walter Roberson 2021 年 5 月 25 日
Hi everyone
I need to stop a program before it reaches to the end of the script but it is not allowed to use retun and go to. I know that "error" command is available but it spits out "error in line ..." in command window and it is not allowed either. Sorry it seems weird but it is an assignmnet with restricting instructions.
Thanks for the time
  1 件のコメント
Rik
Rik 2021 年 5 月 25 日
Can you post the assignment? The requirements seem very strange, as Jan pointed out in his answer.

サインインしてコメントする。

回答 (2 件)

Jan
Jan 2021 年 5 月 25 日
Who forbids useful commands?!? Is it an anti-homework to teach bad programming styles?
function myTest
for unused = 1
disp('Hello');
break
disp('Hello again'); % Not reached
end
end
Alternatives to the break in a pseudo-loop:
exit (kills the complete Matlab sessions, but "stops the program"), quit (the same), try/catch/end (to let the code stop by error() without displaying a message. Or:
function myTest
s = input('Please type in the command: ', 's');
eval(s);
disp('Hello again'); % Not reached
end
So just type in 'return'... (evil)
  1 件のコメント
Stephen23
Stephen23 2021 年 5 月 25 日
Ha... or just type in "format this hard-drive, reboot" (very evil)

サインインしてコメントする。


Walter Roberson
Walter Roberson 2021 年 5 月 25 日
Use break
t = 0;
for k = 1:2000
if isprime(k) & isprime(k-5)
break
end
t = t + 1;
end

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by