Handling Inputs
Status: Abandoned
Brought to you by:
umbertopicchini
Hello,
-When inputting an incorrect value the program quits.
-Instead, please wrap each waiting for user input command with something like the following.
-This will avoid the annoying issue of having to re-type everything.
Filename: SDE_Library_Setup.m
*PREVIOUS INPUT:
T = input('\nFinal time T: ');
if(isempty(T))
error('T must be specified');
end
*SUGGESTED CHANGE:
T='';
while (isempty(T))
T = input('\nFinal time T: ');
if (isempty(T))
disp('T must be specified');
end
end
kind regards,
Ian Gregory, Sydney.