slider matlab

Designing a Slider

Suppose you want to create a slider with the following behavior:

  • Slider range = 5 to 8
  • Arrow step size = 0.4
  • Trough step size = 1
  • Initial value = 6.5

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:

  • SliderStep, X .133
  • SliderStep, Y .333
  • Max 8
  • Min 5
  • Value 6.5

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值