Error with Guide opening
6 次查看(过去 30 天)
显示 更早的评论
What does this error mean.
I have a pushbutton 4 callback in my code mut not a CreatFn, so why is it complaining??
Error using feval
Undefined function 'pushbutton4_CreateFcn' for input arguments of type 'matlab.ui.control.UIControl'.
Error in gui_mainfcn (line 95)
feval(varargin{:});
0 个评论
采纳的回答
Adam
2014-12-11
编辑:Adam
2014-12-11
It's complaining precisely because you don't have a create function.
If you go to the Property Inspector you will probably find that the CreateFcn field is not empty and has some automatically created function link in there for which it originally created the functyion body in your m-file. You can just delete that 'CreateFcn' entry of you want (as I tend top nowadays), but if you leave it there by default you must keep the CreateFcn in the .m file that is auto created.
2 个评论
Adam
2014-12-11
编辑:Adam
2014-12-11
The default created function does some colour test based on the platform you are on and sets to the default colour of the system you are using if not 'PC'. I only ever use Windows so I decided I don't care about that!
You can put other code in there too if you want, but I've never found any situation in which I would want to. I initialise my ui control properties either in GUIDE itself or in the OpeningFcn.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!