How to make slider output a whole number? (Appdesigner)

25 次查看(过去 30 天)
I've connected a slider with an edit field (moving the slider changes value in edit field and vise versa)
Problem is sometimes the slider will give a decimal wheres I need it to always round to nearest whole number.
Heres just the code within the slider callback
Image for better visualitaion plus code on bottom to copy
% Callbacks that handle component events
methods (Access = private)
% Value changed function: RealisationsSlider
function RealisationsSliderValueChanged(app, event)
slider_value = app.RealisationsSlider.Value;
app.RealisationsEditField.Value = slider_value; % make slider and edit box linked
end
any suggestions?
Much appreicated!
  2 个评论
Sylvain
Sylvain 2022-5-6
% Value changed function: RealisationsSlider
function RealisationsSliderValueChanged(app, event)
slider_value = app.RealisationsSlider.Value;
app.RealisationsEditField.Value = round(slider_value); % make slider and edit box linked
app.RealisationsSlider.Value = round(slider_value); % update the slider itself
end
Logan Das
Logan Das 2022-5-6
编辑:Logan Das 2022-5-6
Perfect! I can't mark your commect as answer (since its a comment)
Hope you don't mind if I just post it and mark it as solved

请先登录,再进行评论。

采纳的回答

Logan Das
Logan Das 2022-5-6
% Value changed function: RealisationsSlider
function RealisationsSliderValueChanged(app, event)
slider_value = app.RealisationsSlider.Value;
app.RealisationsEditField.Value = round(slider_value); % make slider and edit box linked
app.RealisationsSlider.Value = round(slider_value); % update the slider itself
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

产品


版本

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by