MATLAB: Gui

guiMATLAB

hi im new for gui. Anybody can tel me what is meant by create function , delete function and button down function, when we can use it in gui?

Best Answer

The question is very basic. I recommend to read the Getting Started chapter in the documentation.
  • The CreateFcn is called, when a figure is created.
  • The DeleteFcn is called, when the figure is deleted.
  • The ButtonDownFcn is called, when the mouse is click over the figure area and no other GUI-element (e.g. a button) catchs the event.
To find corresponding locations in the documentation:
docsearch DeleteFcn