How can I animate a parabolic function?

3 次查看(过去 30 天)
%Here is my code to plot -x^2 slowly like the comet function:
x = linspace(0,4*pi,100);
for a = linspace(-10,10,200)
y = -(x+a).^2;
plot(x,y,'o')
drawnow;
pause(1/40);
end
So how can I edit it to look like the comet function smoothly?

回答(1 个)

Star Strider
Star Strider 2016-7-5
Plotting it in real time will probably not result in the smoothness you want.
I would experiment with im2frame and movie.

类别

Help CenterFile Exchange 中查找有关 Animation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by