我目前正在尝试在MATLAB中编写实验。作为其中的一部分,它应该接受并记录关键响应,1或0.问题是我只需要在一个特定时间段记录密钥,并在实验的其他部分被忽略。必须记录响应以及响应所花费的时间,并且应该最早执行一次(因此,一旦用户按下某个键,程序就不会记录后续的那些)。
到目前为止,我尝试了很多方法。这些可能是非常简单的解决方法,但我对面向对象编程并不擅长。
一种选择是使用
set(gcf,'KeyPressFcn',@KeyDownListener)
其中KeyDownListener是
function KeyUpListener(key_hand, key_obj, starting_time)
toc(starting_time)
key_pressed = key_obj.Key; return; end
但是,有两个问题:1)我正在努力尝试将此函数的值返回给调用脚本; 2)一旦MATLAB读取这段set(...)
代码,它就会一直捕获按下的每一个键。因此,基本上,如果在循环实验中有100个试验(每个试验由5个阶段组成,其中按键仅应在第4阶段接受),set(...)
将被忽略。首先在1-3阶段首次出现之前进行,但是在第二阶段的所有阶段都会出现,在每个阶段,1-5阶段。
然后我尝试将调用脚本和被调用函数放入另一个从外部脚本调用的函数中,这样一旦控件返回到更高级别的脚本,我就放入另一个
set(gcf,'KeyPressFcn',@mute)
mute
函数不执行任何操作。这似乎适用于问题2,但它仍然不允许我获取keypress回调的值,并且,因为我使用pause(..)
来允许用户有时间进行响应,所以它不会中断按下第一个键,它等待pause
括号中分配的整个时间。
答案 0 :(得分:4)
我建议使用setappdata
和getappdata
在GUI的回调之间传递变量。
您还可以阅读Share Data Among Callbacks以获取有关此方面的更多信息。
要禁用回调函数,您不需要将回调重新分配给不执行任何操作的函数,您只需指定一个空数组:
% assign the 'KeyDownListener' function and pass one parameter ('var1') with it
set( h.fig, 'KeyPressFcn',{@KeyDownListener,var1})
% then later when you don't need it anymore:
% Disable the 'KeyPressFcn listener, assign 'empty' to it
set( h.fig, 'KeyPressFcn',[])
下面是一个最小的GUI,它演示了如何捕获单个按键(和时间),然后将收集的数据保存到应用程序的appdata
空间中,然后通过&#39再次收集它们。 ;显示'功能(你可以用你收集的数据做任何你想做的事情。)
SingleKeyPressDemo.m
的代码:
function h = SingleKeyPressDemo
% create a minimal figure with a button and 2 text fields
h.fig = figure ;
h.btn = uicontrol('Style','Pushbutton','String','Start capture',...
'units','Normalized','Position',[0.1 0.6 0.8 0.3],...
'Callback',@StartKeyCapture) ;
h.txtKey = uicontrol('Style','text','String','Key pressed:',...
'units','Normalized','Position',[0.1 0.4 0.8 0.1]) ;
h.txtTime = uicontrol('Style','text','String','Elapsed time:',...
'units','Normalized','Position',[0.1 0.3 0.8 0.1]) ;
% assign a callback to the KeyRelease event to intercept passing the
% eventdata to the command window
set(h.fig,'KeyReleaseFcn',@KeyReleased)
% initialise appdata variables to hold the captured key and the time
setappdata( h.fig , 'CapturedKey' , [] )
setappdata( h.fig , 'Elapsed_time' , [] )
% save the handle structure
guidata( h.fig , h)
function StartKeyCapture(hobj,~)
h = guidata( hobj ) ; % retrieve the handle structure
StartTime = tic ; % Start a stopwatch
% assigne the callback funtion, passing the stopwatch in parameter
set(h.fig,'KeyPressFcn',{@KeyDownListener,StartTime})
% disable the button until a key is pressed (also makes it loose the
% focus, which is handy otherwise the button keeps the focus and hides
% the 'KeyPressedFcn'
set( h.btn , 'Enable','off')
function KeyDownListener(hobj, key_obj, starting_time)
% Detect key pressed and time elapsed
Elapsed_time = toc(starting_time) ;
key_pressed = key_obj.Key;
h = guidata( hobj ) ; % retrieve the handle structure
setappdata( h.fig , 'CapturedKey' , key_pressed ) ; % save the captured key
setappdata( h.fig , 'Elapsed_time' , Elapsed_time ) ; % save the elapsed time
set(h.fig,'KeyPressFcn',[]) % remove listener so new key press will not trigger execution
set( h.btn , 'Enable','on') % re-enable the button for a new experiment
% (optional) do something after a key was pressed
display_results(h.fig) ;
function display_results(hobj)
h = guidata( hobj ) ; % retrieve the handle structure
% retrieve the saved data
CapturedKey = getappdata( h.fig , 'CapturedKey' ) ;
Elapsed_time = getappdata( h.fig , 'Elapsed_time' ) ;
% update display
set( h.txtKey , 'String', sprintf('Key pressed: %s',CapturedKey) ) ;
set( h.txtTime , 'String', sprintf('Elapsed time: %f ms',Elapsed_time) ) ;
function KeyReleased(~,~)
% do nothing
% The only purpose of this function is to intercept the KeyReleased event
% so it won't be automatically passed on to the command window.
以编程方式创建GUI在Matlab中充满了冗长,专注于2个函数StartKeyCapture
和KeyDownListener
中的代码,以实现您的要求。
此示例将生成以下GUI:
我还建议不要在GUI应用程序中使用gcf
。在调试或在控制台中使用数字打开时,它是一个方便的快捷方式,但在GUI中,对其自身元素的调用应尽可能自包含。 MATLAB提供了保存所有GUI元素(所有uicontrol,包括主图)的句柄的方法,因此您可以在需要时将它们显式地调用。这样可以降低出错的风险(假设您的用户也在同一个MATLAB会话中运行其他数字,如果您的回调触发并在用户摆弄另一个数字时调用gcf
,您将尝试执行代码与预期不同的数字......很容易导致错误)。
请阅读guidata
上的文档以获取更多信息(和/或观察我在上述示例中如何使用它)。
为了避免在按下每个键时焦点返回命令窗口,您还必须为相应的KeyRelease
事件定义一个回调函数,否则事件将自动转发到命令窗口(将重点关注。)
一个干净的方法是简单地添加回调分配
set(h.fig,'KeyReleaseFcn',@KeyReleased)
在图形定义中一劳永逸(您不必在每次实验中设置/撤消此回调),然后定义一个不执行任何操作的空函数function KeyReleased(~,~)
。这种方式在上面修改过的代码示例中实现。
没有额外的空函数的另一种方法是在分配时简单地定义回调:
set(h.fig,'KeyReleaseFcn','disp([])')
这样您就不需要空KeyReleased
函数。
但请注意,必须定义回调函数(在代码中内联或稍后)。简单地将empty
分配给回调将不起作用。 (例如,下面的两个选项都将无法拦截事件并将其转发到命令窗口:
set(h.fig,'KeyReleaseFcn','') % not working
set(h.fig,'KeyReleaseFcn',[]) % not working either