How to acces to the code of a button

3 views (last 30 days)
brahmi ibtissem
brahmi ibtissem on 6 Mar 2018
Answered: brahmi ibtissem on 20 Mar 2018
Hello, I have an inetrface matlab already functinnelle and I have no problem. Today when I want to change the code of a button or axis I can not. Can you tell me what the problem is. Thanks
  3 Comments
Walter Roberson
Walter Roberson on 14 Mar 2018
Somehow you are deleting the figure that the button is attached to.
Image Analyst
Image Analyst on 14 Mar 2018
Search your code for the words "clear" and "delete" and make sure it makes sense, and is needed, to call them when you do. Changes are, you did "clear all" in the function which blew away the essential "handles" structure variable.

Sign in to comment.

Answers (3)

Steven Lord
Steven Lord on 6 Mar 2018
How did you create the interface: programmatically, using GUIDE, or using App Designer? Check the appropriate section on this documentation page for instruction on how to code your app's behavior. If you have your app open in GUIDE or App Designer, you should be able to edit the callbacks the same way you would add code to a new callback.
If you have opened your UI's code in GUIDE or App Designer and cannot edit the code in those environments, please say a little more about what "I can not" means: do you receive an error (and if so what's the full text, everything in red of that error?), do you receive a warning (ditto, except everything in orange), etc.?

brahmi ibtissem
brahmi ibtissem on 14 Mar 2018
Hi, Despite i verifie "delete" and "clear", i still have the same problem.I have this error message: Error using waitforbuttonpress waitforbuttonpress exit because target figure has been deleted
Error in drawColormap (line 118) k = waitforbuttonpress;
Error in simul>pushbutton10_Callback (line 639) drawColormap(handles);
Error in gui_mainfcn (line 95) feval(varargin{:});
Error in simul (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)simul('pushbutton10_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating DestroyedObject Callback
  3 Comments
brahmi ibtissem
brahmi ibtissem on 20 Mar 2018
Edited: Stephen23 on 20 Mar 2018
Hi, This is the code of the interface and the figure. The problem appear when i click in pushbutton10 (Run simulation).
Walter Roberson
Walter Roberson on 20 Mar 2018
What is the code for drawMap and for drawColormap ?

Sign in to comment.


brahmi ibtissem
brahmi ibtissem on 20 Mar 2018
There are the code of drawmap and drawColormap. Thanks

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!