Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
rbme17
rbme17 am 1 Aug. 2017
Bearbeitet: rbme17 am 2 Aug. 2017
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!

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 1 Aug. 2017
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 Kommentare
Walter Roberson
Walter Roberson am 2 Aug. 2017
Try
guidata(handles.pushbutton2, handles)
rbme17
rbme17 am 2 Aug. 2017
Bearbeitet: rbme17 am 2 Aug. 2017
Whoops! Seems to work fine now, thanks Walter!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Interactive Control and Callbacks finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by