下面的代码将不起作用,因为程序不会知道我们所在的试用号是否可以被 20 整除。基本上,我想检查试用号是否 = 20、40、60 等,如果是,有主题如果他们愿意,可以休息一下。
numTrials = 345;
for trial = 1:ntrials
% Take a break every 20 trials, subject can press space key to move on
if mod(trial, 20) == 0
breakText = ['Take a break or press the spacebar to continue'];
tic
while doc < 30 && ~keyPress
DrawFormattedText(window, breakText, 'center', 'center', black)
Screen('Flip', window);
if (keyCode(spaceKey) == 1)
break;
end
end
end
提前致谢!