Borrar filtros
Borrar filtros

Writing a value of variable into edit text filed in GUIDE

2 visualizaciones (últimos 30 días)
Fedor Durnev
Fedor Durnev el 7 de Abr. de 2020
Comentada: Fedor Durnev el 7 de Abr. de 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 comentarios
Subhamoy Saha
Subhamoy Saha el 7 de Abr. de 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 el 7 de Abr. de 2020
Yes, "set", I forgot about this magic function, thank you!

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Text Data Preparation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by