Info

This question is closed. Reopen it to edit or answer.

How to return a external sentences for a loop ?

1 view (last 30 days)
fernando ramos
fernando ramos on 8 Dec 2015
Closed: MATLAB Answer Bot on 20 Aug 2021
Hi, I try to realize a program for this flowchart but, I had problem with the part that I marked in red. The problem is in the part that it defined for second time "sigma less or equal 0" I don't know how to create the code for this part.
In mi code, when It defined in first time "sigma less or equal 0", I use the sentences 'if' and break if the sentences is fulfilled then,I use "else" and "while" (in the part I defined sigma more or equal 0") for the next part. I appreciate your answer!

Answers (1)

Walter Roberson
Walter Roberson on 8 Dec 2015
while true
do a calculation
if conditions are good
break
end
do another calculation
if conditions are good
break
end
end
do the final calculations

Tags

Community Treasure Hunt

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

Start Hunting!