How to acces to the code of a button

2 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2018-3-14
Somehow you are deleting the figure that the button is attached to.
Image Analyst
Image Analyst 2018-3-14
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.

请先登录,再进行评论。

回答(3 个)

Steven Lord
Steven Lord 2018-3-6
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 2018-3-14
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 个评论
brahmi ibtissem
brahmi ibtissem 2018-3-20
编辑:Stephen23 2018-3-20
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 2018-3-20
What is the code for drawMap and for drawColormap ?

请先登录,再进行评论。


brahmi ibtissem
brahmi ibtissem 2018-3-20
There are the code of drawmap and drawColormap. Thanks

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by