В Matlab, как вы можете выполнить обратный вызов, во время перетаскивания слайдера?

StackOverflow https://stackoverflow.com/questions/6032924

Вопрос

Я создал Matlab GUI, используя руководство.У меня есть ползунок с функцией обратного вызова.Я заметил, что этот обратный вызов, который должен выполнять «на слайдере», на самом деле работает только после того, как слайдер будет перемещен, и выпущена мышь.

Есть ли способ получить сценарий для пробега, поскольку ползунок перетаскивается, для живого обновления сюжета?Будут ли я предположить, что нужно было что-то, чтобы остановить сценарий, который запускается слишком много раз.

Это было полезно?

Решение

Even though the callback of the slider isn't being called as the mouse is moved, the 'Value' property of the slider uicontrol is being updated. Therefore, you could create a listener using addlistener that will execute a given callback when the 'Value' property changes. Here's an example:

hSlider = uicontrol('Style', 'slider', 'Callback', @(s, e) disp('hello'));
hListener = addlistener(hSlider, 'Value', 'PostSet', @(s, e) disp('hi'));

As you move the slider you should see 'hi' being printed to the screen (the listener callback), and when you release the mouse you will see 'hello' printed (the uicontrol callback).

Другие советы

Just for the record, this subject is discussed in detail here: http://UndocumentedMatlab.com/blog/continuous-slider-callback/ - several alternative solutions are presented there. gnovice's solution using addlistener is equivalent to the handle.listener alternative, since addlistener is basically just a wrapper for the latter.

If you want to execute the same original callback you passed to uicontrol you can add this generic listener which bootstraps the existing callback:

sld.addlistener('Value','PostSet',@(src,data) data.AffectedObject.Callback(data.AffectedObject,struct('Source',data.AffectedObject,'EventName','Action')));

Related blog post

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top