Filter löschen
Filter löschen

return to previous step

2 Ansichten (letzte 30 Tage)
arwa
arwa am 21 Dez. 2016
Beantwortet: James Tursa am 21 Dez. 2016
hello, I have a program code including some steps like step A,B,C and D I want at step D if condition is true go back or return to step B and so on. How can I translate it? Can I use while loop?

Akzeptierte Antwort

James Tursa
James Tursa am 21 Dez. 2016
Do you mean something like this?
% Step A
while( true )
% Step B
% Step C
% Step D
if( condition )
continue % <-- return to Step B
end
% Step E
break % <-- go to Step F
end
% Step F
Without more details about your code, it is hard to know what logic you really need.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by