Filter löschen
Filter löschen

Writing a value of variable into edit text filed in GUIDE

2 Ansichten (letzte 30 Tage)
Fedor Durnev
Fedor Durnev am 7 Apr. 2020
Kommentiert: Fedor Durnev am 7 Apr. 2020
Hi!
I have created a pushbutton and edit_text fields through GUIDE. After tapping on pushbutton, some plots are built and one variable is calculated.
My problem is that I need to display this variable into edit_text field each time, when I tap on pushbutton. I know only how to work with variables, when edit_text is used as input field. In my case I want to make it as output field. Maybe should I use static_text instead and if yes, how can I display this variable into it?
How can I solve this problem?
Thank you!
  2 Kommentare
Subhamoy Saha
Subhamoy Saha am 7 Apr. 2020
The way you are getting input from edit_text field, in a similar way you can display output to this field.
Suppose your output numeric variable is a.
set(handles.edit_text,'String',num2str(a))
Here edit_text is the name of the callback function of edit_text field.
Considering a as a numeric variable it has been converted to string (not necessary).
Fedor Durnev
Fedor Durnev am 7 Apr. 2020
Yes, "set", I forgot about this magic function, thank you!

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by