Gistlib Logo

gistlib

other matlab categories

loop-control code snippets in matlab

how many times will this loop execute in matlab
which of the following best describes the code below? x = input("? "); while ~isempty(x) if x == 3 break; end x = input("? "); end in matlab

gistlibby LogSnag