以下のコードは、現在のトライアル番号が 20 で割り切れるかどうかをプログラムが認識できないため、機能しません。彼らが望むなら休憩してください。
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
前もって感謝します!