필터 지우기
필터 지우기

How to use guidata to save data in external MATLAB function?

조회 수: 1 (최근 30일)
rbme17
rbme17 2017년 8월 1일
편집: rbme17 2017년 8월 2일
Hi all,
I'm writing a GUI that uses external function m files. I call handles into the function to use values in a for loop. I eventually want to overwrite handles with the new value found from the for loop.
e.g.
handles.struct.variable = 0; % initialized in GUI main code
___________________________________________________________
for x = 1:100
variable = handles.struct.variable(x)
variable = some equation/code;
handles.struct.variable(x) = variable
guidata(hObject, handles) %<--------- this is my issue
end
I pre-allocated the structure I'm using, but when I try to save the data using 'guidata(hObject, handles) I get an error:
"Undefined function or variable 'hObject'."
Does anyone know a way to save the data to handles in a function file written outside of the GUI?
Thanks!

채택된 답변

Walter Roberson
Walter Roberson 2017년 8월 1일
To use guidata to update the master copy of the handles, you need to know at least one graphics object that is part of the figure that has the guidata attached to it. It can be anything inside the figure -- a uicontrol, an axes, a line, a context menu, anything. Perhaps you have an appropriate object inside the handles structure already.
If not, then you can use findobj(), provided you know something unique about some object that is inside the figure. You can findobj() to locate all figures, but if you don't know something about the one acting as your GUI then you might accidentally end up with multiple figures and pick the wrong one.
  댓글 수: 3
Walter Roberson
Walter Roberson 2017년 8월 2일
Try
guidata(handles.pushbutton2, handles)
rbme17
rbme17 2017년 8월 2일
편집: rbme17 2017년 8월 2일
Whoops! Seems to work fine now, thanks Walter!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by