dynamic range of slider in MATLAB GUI

7 views (last 30 days)
hey, if i want the slider range to be controlled by an input in the edit text, can i do that

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 21 Jun 2011
Yes, you can.
Range=get(handleEdit,'string');
set(handleSlider,'Max',str2num(Range));

More Answers (1)

Walter Roberson
Walter Roberson on 21 Jun 2011
Yes. Your callback function for the edit uicontrol can set() the properties of the slider.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!