MATLAB: Dynamic range of slider in MATLAB GUI

slider

hey, if i want the slider range to be controlled by an input in the edit text, can i do that

Best Answer

Yes, you can.
Range=get(handleEdit,'string');
set(handleSlider,'Max',str2num(Range));