Plot a figure as time progresses?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi
I wanna plot a figure sequentially as time progresses.
For example if we plot
t=0:0.1:10; x=t.^2; plot(t,x);
then we have only a curve.
But I wanna have a figure that starts at the origin and ends at (10,100).
Is there any method or command to do this?
Thanks.
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 29 de Abr. de 2013
t=0:0.1:10;
x=t.^2;
figure;
hold on
xlim([min(t) max(t)])
ylim([min(x) max(x)])
for k=1:numel(t)
plot(t(k),x(k));
pause(0.1)
end
Más respuestas (1)
Ver también
Categorías
Más información sobre Annotations 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!