我在 MATLAB 中创建了一个类似 Stroop 的反应时间任务,查看试验结果表明我的代码可能有问题(一致性效果比预期的要大得多)。我怀疑我可能在录制 RT 时出错了,所以任何人都可以帮助我了解以下设置是否可以?
在任何给定的试验中,都会发生两个事件(在固定交叉之后):首先,目标刺激最多出现 3 秒(或直到反应),然后参与者必须按下按钮开始下一次试验。记录两个按钮按下(目标和试用开始按钮)的 RT。这是我的代码:
Screen('DrawTexture', mainwin, Target);
Screen('Flip', mainwin);
timeStart = GetSecs;keyIsDown=0; correct=0; rt=0;
while 1 & (GetSecs - timeStart) < 3
[keyIsDown, secs, keyCode] = KbCheck;
FlushEvents('keyDown');
if keyIsDown
nKeys = sum(keyCode);
if nKeys==1
if keyCode(Left)||keyCode(Right)||keyCode(Down)||keyCode(Up)
rt = 1000.*(GetSecs-timeStart);
keypressed=find(keyCode);
Screen('Flip', mainwin);
if ... [I removed some irrelevant ERROR feedback related code here]...
elseif keyCode(escKey)
ShowCursor; fclose(outfile); Screen('CloseAll'); return
end
keyIsDown=0; keyCode=0;
end
else
keypressed = 0; %the resp column in output is 0 if no button is pressed
end
end
if keypressed == 0 %indicates timeout errors
DrawFormattedText(mainwin, 'TOO SLOW', 'center', 'center', errorcol);
Screen('Flip', mainwin);
WaitSecs(1);
end
Screen('DrawTexture', mainwin, press5);
Screen('Flip', mainwin);
keyIsDown=0; timeSt = GetSecs;
while 1
[keyIsDown, secs, keyCode] = KbCheck;
if keyIsDown
if keyCode(MoveOn)
pause_rt = 1000.*(secs - timeSt);
break ;
elseif keyCode(escKey)
ShowCursor;
fclose(outfile);
Screen('CloseAll');
return;
end
end
end
我的问题:命令 GetSecs 每次调用时都会获取时间,对吗?因此 GetSecs - timeStart 是一种计算 RT 的好方法 - 但 secs - timeSt 也是如此(如第二个刺激所见),因为 secs 是 KbCheck 返回按钮按下的时间。这两种方法在很大程度上是等效的(使用 GetSecs - timeStart 可能稍微高估了 RT),对吗?
我担心的是,NEXT 试验中目标的 RT 估计值可能会受到 PREVIOUS 试验的第二个按钮 RT 的影响。你看到任何证据吗?