GUIのSliderについて
20 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
kota itabashi
le 19 Déc 2018
Réponse apportée : Tohru Kikawada
le 24 Déc 2018
GUIのSliderについて質問があります。
Sliderの値を変化させたいときに横移動などでクリックしながら値をリアルタイムに変化させる方法はないでしょうか。
Réponse acceptée
Tohru Kikawada
le 24 Déc 2018
uicontrol のドキュメントの下記のサンプルが参考になると思います。
% Create slider
sld = uicontrol('Style', 'slider',...
'Min',1,'Max',50,'Value',41,...
'Position', [400 20 120 20],...
'Callback', @surfzlim);
function surfzlim(source,event)
val = 51 - source.Value;
% For R2014a and earlier:
% val = 51 - get(source,'Value');
zlim(ax,[-val val]);
end
コールバック関数の記述については下記も参考にしてみてください。
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur GUIDE アプリの移行 dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!