Put a set values to slider in Matlab Guide

5 次查看(过去 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?

回答(1 个)

Image Analyst
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
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.
Jonasz
Jonasz 2013-8-18
I will be only one number but how the slider know what number to display and the range etc?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Translated by