Error with Guide opening

2 visualizaciones (últimos 30 días)
Jason
Jason el 11 de Dic. de 2014
Editada: Adam el 11 de Dic. de 2014
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{:});

Respuesta aceptada

Adam
Adam el 11 de Dic. de 2014
Editada: Adam el 11 de Dic. de 2014
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 comentarios
Jason
Jason el 11 de Dic. de 2014
Thankyou for pointing this out. What use is this for push buttons anyway?
Adam
Adam el 11 de Dic. de 2014
Editada: Adam el 11 de Dic. de 2014
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.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by