time limit for input of data and automatic tranfer of control to next line if the time is exceeded
1 次查看(过去 30 天)
显示 更早的评论
I have a doubt Can we give time limit for an input statement. Eg:-a=input('name','s');
b=input('age','s');
Let us give 5 seconds for entering the name.after five seconds even if the name is entered or not the control will go to next line that is b without pressing enter key.
Is this possible??
Please give me some suggestions.
0 个评论
回答(1 个)
Walter Roberson
2015-5-30
No, you cannot do that with an input() statement. Timers will not help: you might be able to get a timer to run but the timer will not be able to tell the input() statement to continue.
If you create a graphics dialog to get the value, then you can use uiwait() to wait for a response and use a timeout on it.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Dynamic System Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!