为什么 调用edit的callback时老出现为定义h0bject的错误
function edit1_Callback(hObject, eventdata, handles) v_entry = get(h0bject,'String');v=str2double(v_entry); if isnan(v) v=50;set(h0bject,'string','50'); end handles.v=v;guidata(h0bject,handles);当我运行GUI在edit1中填写数据时出现错误:
??? Undefined function or variable 'h0bject'.
Error in ==> formation>edit1_Callback at 124
v_entry = get(h0bject,'String');
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> formation at 42
gui_mainfcn(gui_State, varargin{:});
Error in ==> @(hObject,eventdata)formation('edit1_Callback',hObject,eventdata,guidata(hObject))
??? Error while evaluating uicontrol Callback 谁能解决这个问题的???我把m文件和fig文件还有simulink模型发给他,求大神{:3_58:}
回复 2 # nuaazhr 的帖子
lz把m.code和gui都传上来吧,大家都看看,想想办法。
其实可以在push button中编写程序,edit中的callback都可以删除 回复 3 # 321forever 的帖子
里面有我的m文件、fig文件还有simulink模型
回复 4 # nuaazhr 的帖子
handles.v=50;
handles.omega=0.5;
handles.csx1=0;
handles.csy1=0;
handles.csx2=-60;
handles.csy2=30;
handles.csx3=-60;
handles.csy3=-30;
handles.csx4=-100;
handles.csy4=60;
handles.csx5=-60;
handles.csy5=-60;
handles.tx12_choose=0;
handles.tx13_choose=0;
handles.tx14_choose=0;
handles.tx15_choose=0;
handles.tx23_choose=0;
handles.tx24_choose=0;
handles.tx25_choose=0;
handles.tx32_choose=0;
这些把handles都换成其他的struct,如dataL.tx32_choose=0;
在sub function前加上global dataL
回复 5 # 321forever 的帖子
我找到前面的错误了 ,我把hO(哦)bject写成h0(零)bject了{:3_49:}
页:
[1]