我收到了一个错误:
Error using edit (line 31)
The input must be a string.
Error in showTF>callback_update_model (line 507)
vars.dropheight = str2num(get(edit(2),'String'));
我的代码在这里:
params = varargin{1};
这是2个输入中的一个:
edit(2) = uicontrol('Parent',jCalc,'Units','Pixels','Position',[300 20 100 20],'String',num2str(params(2)),'Style','edit',...
'Callback',@edit_2,...
'BackgroundColor',[1 1 1],'ToolTipString','Puck Drop Height');
按钮回调:
function callback_update_model(~,~)
vars.dropheight = str2num(get(edit(2),'String'));
vars.armradius = str2num(get(edit(1),'String'));
kiddies = get(guiel.hAX(3),'Children');
delete(kiddies);
clear kiddies;
set(guiel.tfPanel,'Visible','off','Position',cnst.tfPanelpos);
set(guiel.hAX(1),'Position',cnst.axpos1);
if ishandle(guiel.hAX(2))
set(guiel.hAX(2),'Position',cnst.axpos2);
end
eval(get(guiel.hPB(4),'Callback'));
end
varargin显示1X1 cell [2]
,我对如何转换输入值感到困惑。
答案 0 :(得分:0)
您的问题是您已使用edit
作为变量,但它也是built-in function,它希望文件名作为字符串输入,因此您的错误。你应该避免像这样遮蔽内置函数,因为它通常会导致问题和模糊。
通常,变量将采用precedence并代替阴影函数。在这种情况下,函数似乎是通过输入2
而不是使用2
索引的变量来调用的。这可能是因为callback_update_model
函数可能无法访问edit
变量。以下是解决此问题的方法:
将变量的名称更改为hEdit
(我通常会在h
之前添加handle graphics objects的变量。
检查callback_update_model
是否正确nested,以便它可以访问hEdit
,或向其in another way提供hEdit
。