MATLAB: Do-While

cfor loopwhile loop

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

Best Answer

while true
%code here
if save_rig == A(n); break; end
end