Need help how to develop an gui with callbacks
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I would like to create an GUI , which basically to plot the statistics(mean,Min,Max). I have an sensor list for x and y cordinate. I would like to plot the statistics. I have loaded the sensor list into the listbox and added the plotting details in the listbox callback. So whenever I click the x and y axis entries, i will check whether checkbox for mean, min or max is checked in or not and plot the same. But what i want is, if the user check out the mean or min checkbox, then it should remove the mean or min plot from the figure. How can i do this, whether any callbacks can help on this.
I can do this by coding the plot commands in the check box callback for mean and min. But is that the way to do ? then whereever i have checkbox then i have to copy my plot commands.
Please suggest if i uncheck an checkbox, then the control should go towards listbox callback and execute the plotting commands after checking the status of checkbox for mean,min,max and then plot the same.
0 件のコメント
回答 (1 件)
Ketan
2012 年 5 月 20 日
You could write a helper function that performs the plotting. The listbox callback and the checkbox callbacks could all call this helper function. This way you do not have to replicate plotting code in two different locations.
2 件のコメント
Ketan
2012 年 7 月 1 日
Sorry about the super late response on this. You can define the "helper" function within the MATLAB file containing your gui callback definitions. For example, if you are using guide you can define it below all of the auto-generated callback functions.
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!