MATLAB编程之PTB: 实验暂停

在进行一项很长的实验时如果一直让被试做实验肯定会出现疲劳效应,这时最好在每个block之间加上暂停让被试充分休息。下面是实现这个功能的函数:

function in=pauseTime(wptr,i)
    spaceKey = KbName('space');
    color = 0;
    s = ['现在是第' num2str(i+1) '组,如果需要继续的话就按空格键'];
    oldtxcolor = Screen('TextColor',wptr);
    DrawFormattedText(wptr,s,'center','center',color);
    Screen('Flip',wptr);
    Screen('TextColor',wptr,oldtxcolor);
    while true
        [~,~,keycode]=KbCheck;
        if keycode(spaceKey)
            break;                            %等待按空格键
        end
    end

end

只有被试按空格键才会继续实验。

你可能感兴趣的:(MATLAB)