MATLAB: Numeric index Slider GUI

guinumeric indexslider

Hi! I have 6 slider in my GUI and I want for each one a numeric index to show the actual numeric value moving the slider…is it possible? Thanks, Andrew

Best Answer

If "my_slider_k" is the tag of any of your sliders,
slider_k_value = get(handles.my_slider_k,'Value');
then, set this value to a text object:
set( handles.my_text_thing_handle,num2str(slider_k_value) )
Related Question