How to time a user input
5 次查看(过去 30 天)
显示 更早的评论
I'm relatively new to matlab and am struggling to find a means to use a timer to measure the time it takes for a user to type their input in. I've looked at using "tic toc" with no luck and sinestream. Would very muchappreciate any hints or pointers cheers!
0 个评论
回答(2 个)
Amit
2014-1-23
tic;
I = input('User Type Value');
h = toc;
Here h is the amount of time taken by the user to type the value.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!