How to acces to the code of a button

조회 수: 2 (최근 30일)
brahmi ibtissem
brahmi ibtissem 2018년 3월 6일
답변: brahmi ibtissem 2018년 3월 20일
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