How to use variables in between GUI function?

조회 수: 26 (최근 30일)
chlor thanks
chlor thanks 2016년 7월 25일
댓글: chlor thanks 2016년 7월 27일
I am very new to GUI and so far for my understanding is that you can only put a tag's name behind handles. to communicate between different functions. For example, one uses axes(handles.axes1) inside a push button function.
For my case, I have several functions inside a GUI and there is one variable that is produced by one function, which is not defined previously when I made the GUI layout by GUIDE, it is only produced when the code is run and I would like to use it later in a pushbutton function, in this case, what should I do to make this variable outside of its mother function in order to be used in my pushbutton function?
Sorry if I sound confusing.
Any discussion/help is welcomed! Thanks!

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 7월 25일
your_variable=10
handles.your_variable=your_variable
guidata(hObject,handles)
To call the variable
your_variable=handles.your_variable
  댓글 수: 8
Adam
Adam 2016년 7월 27일
Anything that changes non-graphics objects data on the handles struct will need a call to guidata after it in order to save it back into the main GUI.
If you have factored out a function from a callback or are using listeners you may not have 'hObject' though. In this case you can use gcbo instead or pass the handle of the main GUI down to your function and use
handles = guidata( hGUI );
to extract the handles struct, hGUI being the handle to your main GUI.
chlor thanks
chlor thanks 2016년 7월 27일
This makes sense, thanks for the tips! I will keep them in mind.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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