Capture reaction time to specific button press
古いコメントを表示
I would like to measure how long it takes a user to press key 1 after display of an instruction key. I've tried using tic toc but from manually checking elapsed time, I know that the variable 'reaction' is not capturing the data correctly. Are there any other ways I could do this other than tic toc? Thanks
one=KbName('1!');
Screen('DrawText',win,'Please press 1',100,100)
Screen('Flip',win)
tic;
while KbEventAvail;
[evt,n]=KbEventGet();
if evt.Keycode==one & evt.Pressed==1;
reaction=toc;
end
end
採用された回答
その他の回答 (1 件)
David Hill
2022 年 3 月 17 日
0 投票
Take a look at my Psychomotor Vigilance Task code:
カテゴリ
ヘルプ センター および File Exchange で Timing and presenting 2D and 3D stimuli についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!