0

我正在使用 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
4

1 回答 1

0

Screen('Flip',win) 是您要查找的内容,但您需要发出一些绘图命令才能显示任何内容。

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

于 2016-04-14T10:16:08.617 回答