Update static text for Guide Gui from main matlab function?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ioan Alexandru
am 13 Mär. 2013
Kommentiert: Farley Postgate
am 15 Jun. 2018
Dear Community,
I've been going round and round the Matlab documentation and available threads for some time now and I couldn't manage to find a solution to this: Let's say I have function A.m and GUI.m. A.m has one big function with lots of things in it. GUI.m is the Guide Gui Matlab file which contains all the functions for CreateFcn, Callback, etc. When I run A.m from GUI.m (suppose I call A.m when I press a button from GUI), function A.m obviously will start doing stuff. However, I want to be able to change, for example, the text in a static text box of the GUI.m from within A.m while it is running. Unfortunately, I wasn't able to find a solution to this. Most threads revolve around calling an external function from within , let's say, a callback gui function.
I would really appreciate your support. Thank you very much.
Regards,
Alex
P.S.: is there a way of doing it in a simple was as?:
%line in A.m
GUI(set(handle.statictext,'String','EUREKA'));
I understand that the GUI functions are "nested" so inaccessible to the A.m but I was hopping that there would be a way of calling the handles in something similar to this. The expectation is fairly simple: I want to change the content of a GUI static text box from any external function I wish: even command line.
Thank you
1 Kommentar
Farley Postgate
am 15 Jun. 2018
You just have to send back whatever variable you are manipulating in the main function to the GUI and the code you have there works fine. I just tried it. Or make the variable global.
Akzeptierte Antwort
Jan
am 14 Mär. 2013
Bearbeitet: Jan
am 14 Mär. 2013
The question is not clear:
- ... suppose I call A.m when I press a button from GUI ...
- ... Most threads revolve around calling an external function from within , let's say, a callback gui function.
This means, that most thread concern exactly your problem. Then they should help you already.
One of the many solutions to share data between a GUI and any other function:
function buttonCallback(hObject, EventData, handles)
% This is the callback of the button, which starts the external function.
GuiHandle = ancestor(hObject, 'figure');
A(rand(1,2), rand(3,4), GuiHandle); % Or how ever it is called
And the function header of the external function:
function output = A(in1, in2, GuiHandle)
handles = guidata(GuiHandle);
set(handles.statictext, 'String', 'Written from external function!');
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown 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!