改变psychtoolbox屏幕

时间:2015-09-11 21:45:28

标签: matlab function screen function-call psychtoolbox

我正在使用Psychtoolbox作为界面的一部分在屏幕上显示。我在主脚本中创建了一个[win,Rect]=Screen('OpenWIndow',etc.etc...)的空白屏幕。我想稍后在脚本中使用函数调用来更新屏幕,但我不知道如何将值输入和输出更改屏幕。

类似于:

%main script
[win,Rect]=Screen('OpenWIndow',0,[0 0 0],[0 0 1280 1024]);

%do other processing (in my case communicating with another computer.)

DrawStuff() %function that takes variables from script and updates the screen

% continue script

1 个答案:

答案 0 :(得分:0)

屏幕(' Flip',win)正是您所寻找的,但您需要发布一些绘图命令才能显示任何内容。

请阅读psychtoolbox发行版中的PsychDocumentation / PTBTutorial-ECVP2013.pdf文件,了解刺激呈现的基本知识。