フィルターのクリア

How to define a "ValueChangingFcn" in a GUIDE definied slider

5 ビュー (過去 30 日間)
Csaba
Csaba 2020 年 1 月 4 日
編集済み: Csaba 2020 年 1 月 5 日
There is a "ValueChangingFcn" if I define a slider with uicontrol. I could not find it in the Property Inspector of the GUIDE slider.
Is there any way to define one for this slider as well?
Csaba

採用された回答

Walter Roberson
Walter Roberson 2020 年 1 月 4 日
uicontrol does not have ValueChangingFcn. That callback is only for App Designer "web figures" and never for "traditional figures", but uicontrol exists only for traditional figures.
The App Designer analog of uicontrol sliders is uislider()
If you need to know when a user has stopped moving a uicontrol slider then code the Callback property to start a timer object with the appropriate timeout. If Callback gets called again before the timer expires then restart the timer. Either way, timer was active or not, proceed with the work you would have liked to have done with a ValueChangingFcn callback if those existed. In other words uicontrol slider's equivalent to ValueChangingFcn is Callback property.
When the timer callback gets called, do the work that you would have liked to do in a ValueChangedFcn callback. uicontrol slider has no property equivalent to ValueChangedFcn callback, so this timer work is how you can do the equivalent.
If you want ValueChangingFcn but not ValueChangedFcn then do not bother with the timer, just use Callback property.
  6 件のコメント
Walter Roberson
Walter Roberson 2020 年 1 月 5 日
For frames after the first, I recommend updating the CData property of the image handle, instead of cla / imshow . imshow() can be somewhat slow.
Csaba
Csaba 2020 年 1 月 5 日
Thanks, you are right. I have edited my code!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by