Do-While

조회 수: 2 (최근 30일)
Salvatore Turino
Salvatore Turino 2012년 1월 21일
Hallo, i want to realize in matlab the C code do-while. the condition to stop the cicle is: if save_rig==A(n). can you tell me how to realize it in matlab?actually i've done it with a for cicle+break but i don't like this solution. thank you

채택된 답변

Walter Roberson
Walter Roberson 2012년 1월 21일
while true
%code here
if save_rig == A(n); break; end
end
  댓글 수: 1
Salvatore Turino
Salvatore Turino 2012년 1월 22일
thank you

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by