필터 지우기
필터 지우기

Using slider in GUIDE to perform 2 tasks

조회 수: 1 (최근 30일)
Cheng Yoong
Cheng Yoong 2011년 3월 2일
I have the following GUI: http://postimage.org/image/n0ekwaw4/ I'm trying to use the slider to perform 2 tasks: 1. display current slider number to blue textbox 2. display current slider number+1 to red textbox
Task 1 i can do it but task 2 i have no idea,anyone can give me solution? ps:new guy here,please forgive me if there are any mistake.

채택된 답변

Matt Fig
Matt Fig 2011년 3월 2일
For task 2, do exactly the same thing you did with task 1, except add 1. You might be having trouble with adding 1 because you have strings. Lets say that you get the position of the slider and store it in variable P. Then do:
STR = num2str(str2double(P)+1);
and set the editbox 'string' property to STR.
  댓글 수: 6
Cheng Yoong
Cheng Yoong 2011년 3월 3일
Mind to ask Sir, how do we actually store the value of slider?
Matt Fig
Matt Fig 2011년 3월 3일
You can store the value of the slider in GUIDATA if you wish. Though I don't know why you would want to store it. Anywhere you wish to access the stored value, you could also access the value itself by just calling:
get(sliderhandle,'value')

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by