Filter löschen
Filter löschen

How to update values ​​in a graph taken from a slider

1 Ansicht (letzte 30 Tage)
Carlos Zuñiga
Carlos Zuñiga am 9 Dez. 2012
I'm programming a PID (GUI) for a control system, but I have problems with the sliders. I can not make the graph updates as you move the slider.
I have to do that every time the slider is moved to update the graphics, without pressing any additional buttons.

Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 9 Dez. 2012
You need to insert a plot function inside a slider function callback.
  2 Kommentare
Carlos Zuñiga
Carlos Zuñiga am 9 Dez. 2012
Bearbeitet: Carlos Zuñiga am 9 Dez. 2012
Yes, the problem is that the data is not updated automatically.
e.g.
slider1_Callback function (hObject, eventdata, hand ....
h = get (handles.slider1, 'value')
sys = feedback (sys, h)
axes (handles.axes1)
rlocus (sys)
grid on
But when you move the slider the graph does not change.
Azzi Abdelmalek
Azzi Abdelmalek am 9 Dez. 2012
What is sys? can you post the full slider1_Callback function?

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by