Creating Slider Component

The uislider function creates a new slider object in a new uifigure component unless no parent figure component exists. The syntax for the same is:

slider_name = uislider(<optional parameters>)

The syntax for uislider is simple. If no parent figure exists then, MATLAB creates a new figure component and then adds a slider to it. If a parent figure is given to the function then, it will create the slider in that particular figure.

Example 1:

Matlab




% creating the parent figure
fig = uifigure;
  
% adding the slider component
slid = uislider(fig);


Output:

 

As can be seen, the slider component has been added to the figure.

Create a Slider Component in MATLAB

A slider component is a graphical interface that allows the end users to select discrete values in the range of the slider component. MATLAB provides built-in functionalities to create slider components in a MATLAB figure component.

This article will explain how to create a slider component in MATLAB and the various options available with it. 

Similar Reads

Creating Slider Component

The uislider function creates a new slider object in a new uifigure component unless no parent figure component exists. The syntax for the same is:...

Changing the Limits of the Slider

...

Using the Slider Value

As seen in the previous example, the slider took default values from 0 to 100. However, we can change the same to any desired limits using the following method....