Put a set values to slider in Matlab Guide
12 ビュー (過去 30 日間)
古いコメントを表示
I want to put a set of values to my slider in Matlab Gui so it will be able to discreetly go through these values.
eg. Numbers written in x variable will be presented on the slider ( only these numbers)
How to do it in Matlab Guide?
0 件のコメント
回答 (1 件)
Image Analyst
2013 年 8 月 18 日
編集済み: Image Analyst
2013 年 8 月 18 日
You can set the max and min and value of the slider using the set function:
set(handles.slider1, 'value', someValue);
but it won't display. To do that you need to place a static text label near the slider (say, above it). Then set the string value of the label:
caption = sprintf('Slider value = %.3f', someValue);
set(handles.sliderLabel, 'String', caption);
3 件のコメント
Image Analyst
2013 年 8 月 18 日
What do you want your label to look like? Just use sprintf() to build it up however you want it.
参考
カテゴリ
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!