Azzera filtri
Azzera filtri

Variable numerical value in editbox (gui).

2 visualizzazioni (ultimi 30 giorni)
Roei O
Roei O il 29 Gen 2016
Risposto: Ingrid il 29 Gen 2016
Hi everybody! , I'm building a GUI and i have had to build my own function to calculate min/max values and compare it to the one matlab has to offer(peakdet). I'm using tic/toc to make the comparison (their numerical values are stored in a variable, calling it a and b for the example). I would like to display those variables value in an editbox in my gui. Could you please advise on how to do that? a link to a code or something like that will be much appreciated! Thanks!

Risposta accettata

Ingrid
Ingrid il 29 Gen 2016
If you only want to update the values through this function I would advise against the use of an editbox as this might cause you to accidentally change the value yourself. You could just use a textbox and use it's handle to set the string value of this textbox after you have calculated it
so in your callback function add:
set(handles.text1,'String',num2str(a));
set(handles.text2,'String',num2str(b));

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by