How to update a plot/graph?

44 visualizaciones (últimos 30 días)
lucca k
lucca k el 9 de Nov. de 2015
Comentada: Walter Roberson el 27 de Jun. de 2021
Hello everybody,
I got a plot like this one:
h = subplot(1,2,1);
plot(0, 0);
axis([-30 40 -20 100 ]);
grid on
Now I am getting a new array of x,y - points every second. How can I update the subplot h with these arrays? It is an n by 2 single array.
Thank you in advance!
Lucca

Respuesta aceptada

Image Analyst
Image Analyst el 9 de Nov. de 2015
In your loop where you get new x,y arrays, make sure you have this line after the plot:
plot(.................
drawnow;
drawnow will force the plot to update immediately. Otherwise it probably won't get around to it until the loop is entirely finished so that all you will see is the very last set of data plotted.
  2 comentarios
Sepehr Ariaei
Sepehr Ariaei el 27 de Jun. de 2021
Does drawnow works on semilogy too?
Walter Roberson
Walter Roberson el 27 de Jun. de 2021
Yes, drawnow() works on all graphics updates.

Iniciar sesión para comentar.

Más respuestas (1)

Thorsten
Thorsten el 9 de Nov. de 2015
Editada: Thorsten el 9 de Nov. de 2015
subplot(1,2,1);
plot(x, y);
drawnow

Categorías

Más información sobre Graphics Objects en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by