Matlab gui control slider callback function

2 ビュー (過去 30 日間)
Daniel Kupec
Daniel Kupec 2022 年 3 月 25 日
コメント済み: Voss 2022 年 3 月 25 日
Hi,
i want make a simple colour map display. I wanna type to the textbox and control the slider which controll axes. If I type to textbox, slider will move but the function callback did not evaluate. If I click on the slider after write number to the textbox it will do what i want. Is there any fuction to evaluate callback function of slider in callbak function of text? Thanks for any help.
This is my code in the nutshell (i dont know if it help):
%%slider
function posuvnik_Callback(hObject, eventdata, handles)
pozslid=round(get(handles.posuvnik,'Value'),0);
imagesc(h1,matice{pozslid})
%%edit text
function vyhledvzor_Callback(hObject, eventdata, handles)
vzorek=str2double(get(handles.vyhledvzor,'String'));
set(handles.posuvnik,'Value',vzorek);

採用された回答

Voss
Voss 2022 年 3 月 25 日
%%slider
function posuvnik_Callback(hObject, eventdata, handles)
pozslid=round(get(handles.posuvnik,'Value'),0);
imagesc(h1,matice{pozslid})
%%edit text
function vyhledvzor_Callback(hObject, eventdata, handles)
vzorek=str2double(get(handles.vyhledvzor,'String'));
set(handles.posuvnik,'Value',vzorek);
% call the slider's Callback function:
posuvnik_Callback([],[],handles);
  2 件のコメント
Daniel Kupec
Daniel Kupec 2022 年 3 月 25 日
Perfect, thank you!
Voss
Voss 2022 年 3 月 25 日
You're welcome!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDisplay and Exploration についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by