Pass data from figure to main GUIDE pushbutton callback function

2 Ansichten (letzte 30 Tage)
Kim Lopez
Kim Lopez am 20 Nov. 2017
Kommentiert: Kim Lopez am 20 Nov. 2017
I created a pushbutton in main gui using guide and also programmatically created a figure with pushbutton which inputs data. How can I pass the data when the pushbutton is press from the figure and send it to the main gui pushbutton callback function? I have attached an image for clarification.

Akzeptierte Antwort

KL
KL am 20 Nov. 2017
Bearbeitet: KL am 20 Nov. 2017
You need to update the hObject handle using,
guidata(hObject,handles);
Upon edit, save the new table data in this handle,
hObject.TableData = get(uitableHandle,'Data');
and then in the pushbutton callback use it like,
plot(hObject.TableData)
  3 Kommentare
KL
KL am 20 Nov. 2017
After you update the derated table (be it anywhere), do
hObject.deratedData = derated.Data;
guidata(hObject,handles);
Now your changes are updated to the structure. Now when you are inside your main paushbutton callback, retrieve it like,
dataToPlot = hObject.deratedData;
Kim Lopez
Kim Lopez am 20 Nov. 2017
Wow, that works well. Thank you so much.

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