|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
本帖最后由 eecsseudl 于 2013-4-29 10:07 编辑
a = get(handles.edit1,'String');
b=log(2)
c=-log(a)/b
set(handles.text1,'string',c);
guidata(hObject, handles);
这是GUI 的pushbotton回调函数. 之前a是用户自己输入的。
但运行错误。显示
??? Undefined function or method 'log' for input arguments of type 'char'.
Error in ==> love23>pushbutton1_Callback at 114
c=-log(a)/b
Error in ==> gui_mainfcn at 95
feval(varargin{:});
Error in ==> love23 at 42
gui_mainfcn(gui_State, varargin{:});
??? Error using ==> love23('pushbutton1_Callback',gcbo,[],guidata(gcbo))
Undefined function or method 'log' for input arguments of type 'char'.
??? Error while evaluating uicontrol Callback
指导下是什么意思。。。
改怎样改。
|
|