Designing a Slider
Suppose you want to create a slider with the following behavior:
From these values you need to determine and set the Max
, Min
, SliderStep
, and Value
properties. You can do this by adding the following code to the initialization section of the GUI M-file (after the creation of the handles
structure):
slider_step(1) = 0.4/(8-5); slider_step(2) = 1/(8-5); set(handles.slider1,'sliderstep',slider_step,... 'max',8,'min',5,'Value',6.5)
You can also assign the slider properties using the Property Inspector: