我试图在按钮点击时将刷过的数据保存到变量。我已阅读other questions,但无法找到执行此操作的方法。
在脚本中,以下代码有效:
t=0:0.2:25;
x=sin(t);
n=plot(t,x,'s');
brush on
pause
brushedData = find(get(n,'BrushData'));
但是,调用函数selectBrush
不起作用:
function selectBrush()
% Create data
t=0:0.2:25;
x=sin(t);
% Create figure with points
fig=figure();
n=plot(t,x,'s');
brush on;
addBP = uicontrol(1,'Style', 'pushbutton',...
'String', 'Get selected points index',...
'Position',[5, 5, 200, 30],...
'Units','pixel',...
'Callback',@()assignin('caller','selectedPoints',get(n,'BrushData')));
% ---> Now the user should select the points and click the button 'Get
% selected points index'
waitfor(fig)
% Display index of selected points once the figure is closed
disp(selectedPoints);
end
我变成的错误信息是
Error using selectBrush>@()assignin('caller','selectedPoints',get(n,'BrushData'))
Too many input arguments.
我尝试过使用eval('selectedPoints=,get(n,''BrushData'')')
作为回调函数,使用句柄或单独定义新的回调函数,其他一切都没有成功。
我该怎么做?
编辑1
excaza的方法似乎有效,但回调函数仅在变量I的原始值上执行,而不是在更新的值上。使用以下代码
function testcode()
% Create data
t = 0:0.2:25;
x = sin(t);
% Create figure with points
myfig = figure();
n = plot(t, x, 's');
brush on;
pointslist=[];
uicontrol('Parent', myfig, ...
'Style', 'pushbutton',...
'String', 'Get selected points index',...
'Position', [5, 5, 200, 30],...
'Units', 'pixels',...
'Callback', {@mycallback, n, pointslist} ...
);
% ---> Now the user should select the points and click the button 'Get
% selected points index'
waitfor(myfig)
% Display index of selected points once the figure is closed
disp(pointslist);
end
function mycallback(~, ~, mylineseries, pointslist)
% Ignore the first 2 function inputs: handle of invoking object & event
% data
assignin('caller', 'pointslist', [pointslist find(get(mylineseries,'BrushData'))])
end
如果我在关闭之前多次按下按钮,我希望在按下按钮的同时保存点数,而不仅仅是按下最后一个按钮。
答案 0 :(得分:1)
从the documentation开始,默认情况下,MATLAB的回调总是发送2个变量:
正在执行回调的对象的句柄。在回调函数中使用此句柄来引用回调对象。
事件数据结构,对于某些回调可以为空,或者包含属性中描述的特定信息 该对象的描述。
所以这里发生的事情是assignin
调用传递的变量多于它可以处理的2个变量,这就是它抛出错误的原因(我建议包含错误信息)题)。
要立即修复,您可以使用文档中提到的单元格数组表示法来创建本地回调函数:
function testcode()
% Create data
t = 0:0.2:25;
x = sin(t);
% Create figure with points
myfig = figure();
n = plot(t, x, 's');
brush on;
uicontrol('Parent', myfig, ...
'Style', 'pushbutton',...
'String', 'Get selected points index',...
'Position', [5, 5, 200, 30],...
'Units', 'pixels',...
'Callback', {@mycallback, n} ...
);
% ---> Now the user should select the points and click the button 'Get
% selected points index'
waitfor(myfig)
% Display index of selected points once the figure is closed
disp(selectedPoints);
end
function mycallback(~, ~, mylineseries)
% Ignore the first 2 function inputs: handle of invoking object & event
% data
assignin('caller', 'selectedPoints', get(mylineseries,'BrushData'))
end
哪个应该按照要求运作。另请注意适当的assignin
语法,在您的示例中它不正确。