Adapun source codenya:
function test_slider figure('menubar', 'none', 'position', [300 300 200 100]); slider = uicontrol('style', 'slider', 'position', [10 10, 100 30]... , 'callback', @call); ket = uicontrol('style', 'text', 'position', [10 55, 100 40], ... 'fontsize', 14, 'fontweight', 'bold' ); set(ket, 'string', get(slider, 'value')); function call(varargin) set(ket, 'string', get(slider, 'value')); end end