How to center x-axis in animatedline plotting

3 visualizaciones (últimos 30 días)
I'm attaching the video here. What I want is that to follow the newly added marks as its x axis throughout the animation process.
https://www.youtube.com/watch?v=2Bejgg1FC7g

Respuesta aceptada

Burhan Burak AKMAN
Burhan Burak AKMAN el 26 de Dic. de 2021
Editada: Burhan Burak AKMAN el 26 de Dic. de 2021
You can use this code.
a=animatedline();
xlabel("Distance[m]")
ylabel("Amplitude[V]")
xlim([-250,250])
ylim([-2,2])
for x=linspace(0,500,100)
y=sin(x/50);
addpoints(a,x,y);
xlim([x-250,x+250])
drawnow
end

Más respuestas (0)

Categorías

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

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by