Help with slider in matlab GUI

조회 수: 4 (최근 30일)
aurc89
aurc89 2014년 9월 28일
답변: Image Analyst 2014년 9월 28일
In a GUI file, how can I use a slider to increase or decrease by one unit the number contained into an edit text box ? Thanks

채택된 답변

Image Analyst
Image Analyst 2014년 9월 28일
Set up the slider like this in your start up code (untested):
sliderMin = get(handles.slider, 'Min');
sliderMax = get(handles.slider, 'Max');
increment = 1/(sliderMax-sliderMin);
sliderStep = set(handles.slider, 'Step', [increment, 2*increment]);
To get the integer value later:
sliderValue = round(get(handles.slider, 'Value'));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by