How to add Slider properties with in the app designer?

조회 수: 52 (최근 30일)
Lavanya
Lavanya 2022년 6월 15일
댓글: Simon Chan 2022년 6월 15일
I have created GUI, in that i wanted to write conditions based on the Slider min & slider Max values. But I tried to create
app.slider=uicontrol('Parent',app.UIFigure...
'Units','Normalized',...
'Position',[0.8 0.1 0.1 0.8],...
'Style','Slider',...
'BackgroundColor',[1 1 1],...
'Min',1,'Max',N_images,'Value',1,...
'Callback',@app.SliderValueChanging);
I am getting errors with. Can any one help me with this?

답변 (1개)

Simon Chan
Simon Chan 2022년 6월 15일
It uses Limits rather than Min, Max to define the limits.
  댓글 수: 2
Lavanya
Lavanya 2022년 6월 15일
Yes, but I wanted to write condition for another button that should run in limits.
with the max and min, I am able to write a condition.
example
sliderValue = get(h.slider, 'Value');
% if slider value is less than the maximum, then we can increment
if sliderValue < (get(h.slider, 'Max'))
.........%code for execution
end
How can i define limits for this condition
Simon Chan
Simon Chan 2022년 6월 15일
sliderLimit = get(h.slider,'Limits') if sliderValue < sliderLimit(2) ………………

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

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by