- Set the 'Tag' property in the GUI code for the text box So that we can identify the text box.
- Pass the handle to the GUI to your function which generates the numeric value
- Access the text box using the "findobj" function in your function. Something like this tb = findobj(figHandle,'Tag', tagvalue)
- Set the text to the numeric value. Something like this set(tb,'String',numeric_value)
How I pass variable (number) from separate m-file to GUI edit text box?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Teemu Juujärvi
am 27 Aug. 2015
Bearbeitet: Jeffrey Alido
am 28 Jul. 2017
Hi,
I have separate m-file which generates numeric value once a second and I want to pass this value to GUI once a second. How can I pass this variable to GUI from separate m-file and update it at second intervals?
I have tried many things but haven't succeed yet. Please help if you can.
Teemu
0 Kommentare
Akzeptierte Antwort
Rutuja Shirali
am 31 Aug. 2015
Bearbeitet: Rutuja Shirali
am 31 Aug. 2015
I believe that you have a m-file which is a function having either a timer function or a loop to generate the numeric value. You will need to pass the handle to the GUI to this function in the m-file and then set the value of the text box.
I hope this helps with your issue. If this is not what you are expecting I would suggest contacting MathWorks Technical Support with more clarification on your workflow.
-Rutuja
1 Kommentar
Jeffrey Alido
am 28 Jul. 2017
Bearbeitet: Jeffrey Alido
am 28 Jul. 2017
Hi Rutuja,
Can you help clarify the steps for me even further? I'm a beginner and I'd like to do this same thing.
My .m timer function is:
function timer
for i = 1:15
clc;
i;
pause(1)
end
And the tag for my textbox is text2. I'd like to push a pushbutton and have the timer show up on the textbox.
Thanks!
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Dialog Boxes 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!