Variable numerical value in editbox (gui).

2 ビュー (過去 30 日間)
Roei O
Roei O 2016 年 1 月 29 日
回答済み: Ingrid 2016 年 1 月 29 日
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!

採用された回答

Ingrid
Ingrid 2016 年 1 月 29 日
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));

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by