Skip to content

Commit

Permalink
"Du behøver ikke have en description" - Kristofer Noda, 2016
Browse files Browse the repository at this point in the history
Main script nyb
  • Loading branch information
JonathanGundorph committed Nov 17, 2016
1 parent 43bc80e commit d80ef51
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions MainScript.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
N = str2double(N);
N = round(N);
while N < 0 || N >= 15 || isnan(N)
disp('Please choose an integer between 0 and 15!');
N = inputdlg('Please enter amount of iterations: ','s');
N = inputdlg('Please choose an integer between 0 and 15: ','s');
N = str2double(N);
N = round(N);
end
Expand All @@ -46,7 +45,7 @@
N = round(N);
while N < 0 || N >= 15 || isnan(N)
disp('Please choose an integer between 0 and 15!');
N = inputdlg('Please enter amount of iterations: ','s');
N = inputdlg('Please choose an integer between 0 and 15: ','s');
N = str2double(N);
N = round(N);
end
Expand Down

0 comments on commit d80ef51

Please sign in to comment.