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