How to center x-axis in animatedline plotting
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Engin Sühan Bilgiç
el 26 de Dic. de 2021
Comentada: Engin Sühan Bilgiç
el 26 de Dic. de 2021
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
0 comentarios
Respuesta aceptada
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)
Ver también
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!