If you're using tic, toc, and var=input('prompt'), is there a way for toc to interrupt the user input if they take too long to answer?
조회 수: 10 (최근 30일)
이전 댓글 표시
Hi, I'm working on a project where I have to time people's answers for math problems. Currently, I'm working on 1 problem where they have up to 20 seconds to answer. Is there a way to have Matlab interrupt and tell the user they took too long to answer? So, if they don't answer in 20 seconds, a line will pop up telling them they took too long?
This is the code I have so far for it, but it won't tell the user they took too long until after they input an answer.
close all; clear all; clc;
fprintf('Directions: Complete the following Math problems in your head, then type the answer on the number pad. You will have up to 1 minute to answer each question. Please press any button to continue.\n\n')
%pause;
ECorAns=76*10; %correct answer
tstart=tic;
teass=tic;
fprintf('Start teass')
while toc(teass)<20
easAns=input(' 76 \n x10 \n ')
if toc(teass) >= 20
teasans=toc(teass)
easAns=0;
fprintf('Out of time');
elseif easAns==ECorAns
fprintf(' \n Correct! Good Job! \n');
teasans=toc(teass)
else
fprintf('Incorrect');
teasans=toc(teass)
end
end
tend=toc(tstart)
fprintf('\n End \n')
I think I have it set so the code will remember teass once the code has completely run, so I can record the data.
Thank you!
댓글 수: 0
채택된 답변
Cam Salzberger
2021년 7월 28일
Hello Christina,
You could try using an inputdlg to ask the question, instead of keeping it in the command window. You could get the handle to the dialog box and close it if they take too long.
For a little more customization, you could create your own figure or uifigure pop-up to ask the question.
-Cam
댓글 수: 2
Cam Salzberger
2021년 7월 30일
Hmm, I did a little testing with inputdlg, and could make a neat little quiz:
answers = inputdlg(["1+1 = ?", "2+2 = ?"], "Math Problem", 1, ["", ""], struct("WindowStyle", "modal", "Resize", "on"))
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/699127/image.png)
Unfortunately, it automatically blocks until the window closes. So you would need to make your own dialog, figure, or uifigure window. This will give you the handle to the figure, and you can close it or change its state if they take too long, based on a tic-toc if you want, but a timer would make more sense.
You'll need to add the same text, edit and pushbutton uicontrols (for dialog or figure) or uilabel, uieditfield, and uibutton (for uifigure) to mimic the dialog. Then you add a callback to the button to retrieve the answers and check them or return them somewhere for you to process.
It's a lot more involved, but all GUI creation is. App Designer would probably help you do this a lot faster, as it provides the skeleton of the code for you, and allows for drag-and-drop of components.
-Cam
추가 답변 (2개)
TADA
2021년 7월 28일
편집: TADA
2021년 7월 28일
Its possible, not using toc though.
The problem is this, once your code reaches the input function it freezes in that line and waits for keyboard interaction.
the next line of code is only run after input is returned so toc is not reached at all.
you can use a timer and then proggramatically type the enter key on the "keyboard" using JAVA
timeout = timer();
timeout.ExecutionMode = 'singleShot';
timeout.TimerFcn = @doTimeout;
timeout.StartDelay = 10;
timeout.start();
s = input('type something:', 's');
function doTimeout(tmr, ea)
import java.awt.Robot;
import java.awt.event.KeyEvent;
robot=Robot;
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
end
This small example shows how to stop the input function forcefully after 10 seconds using the trick I mentioned.
This could backfire though if the user starts typing then the timer fires and stops the user in the middle.
댓글 수: 0
Walter Roberson
2021년 7월 28일
Two timer based solutions are shown in https://www.mathworks.com/matlabcentral/answers/119067-how-can-i-set-a-time-for-input-waiting#answer_318457 and https://www.mathworks.com/matlabcentral/answers/95301-how-can-i-implement-a-timer-dependent-input-request-in-matlab
I discuss a list of other possibilities provided by the third party Psychtoolbox
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!