如何在matlab中制作动画情节

时间:2014-05-15 21:10:07

标签: matlab animation

我想知道是否有人知道如何制作动画情节 x =(1000点的数据集) y =(1000点的数据集) 积(X,Y)

最大的问题是这些是我试图绘制的数据集,或x,y坐标,而不是我知道如何通过动画绘制的函数。

我尝试在for循环中执行帧但是它给了我点并且没有将它们连接到折线图中,所以我无法真正看到被追踪的路径。

我使用的代码是

for i = 1:length(DATASET1)
pause(0.1)
plot(DATASET1(i),DATASET2(i))
draw on
end

3 个答案:

答案 0 :(得分:32)

如果你想要的是积累的情节"成长"逐点:最简单的方法是创建一个空图,然后在每次迭代时更新其XDataYData属性:

h = plot(NaN,NaN); %// initiallize plot. Get a handle to graphic object
axis([min(DATASET1) max(DATASET1) min(DATASET2) max(DATASET2)]); %// freeze axes
%// to their final size, to prevent Matlab from rescaling them dynamically 
for ii = 1:length(DATASET1)
    pause(0.01)
    set(h, 'XData', DATASET1(1:ii), 'YData', DATASET2(1:ii));
    drawnow %// you can probably remove this line, as pause already calls drawnow
end

以下是使用DATASET1 = 1:100; DATASET2 = sin((1:100)/6);

获得的 1 示例

enter image description here


1 如果有人感兴趣,该图是一个动画gif,可以通过在循环中添加以下代码(取自here)来创建,在drawnow行之后:

  frame = getframe(1);
  im = frame2im(frame);
  [imind,cm] = rgb2ind(im,256);
  if ii == 1;
      imwrite(imind,cm,filename,'gif','Loopcount',inf);
  else
      imwrite(imind,cm,filename,'gif','WriteMode','append');
  end

答案 1 :(得分:8)

看起来你很亲密。不确定draw on是否是任何命令。

看看这里的代码是否能激发您解决问题 -

%// Sample x and y values assumed for demo.
x = 1:1000;
y = x.^2;

%// Plot starts here
figure,hold on

%// Set x and y limits of the plot
xlim([min(x(:)) max(x(:))])
ylim([min(y(:)) max(y(:))])

%// Plot point by point
for k = 1:numel(x)
    plot(x(k),y(k),'-') %// Choose your own marker here

    %// MATLAB pauses for 0.001 sec before moving on to execue the next 
    %%// instruction and thus creating animation effect
    pause(0.001);     
end

答案 2 :(得分:5)

从R2014b开始,您可以使用annimatedline对象(dochow-to),以便更好地处理动画图形。基本上,annimatedline对象具有addpoints函数,为该行添加新点而无需重新定义现有点,以及清除clearpoints函数用于更复杂动画的线条。

以下是一个例子:

h = animatedline;
axis([0,4*pi,-1,1])

x = linspace(0,4*pi,1000);
y = sin(x);
for k = 1:length(x)  
    addpoints(h,x(k),y(k));
    drawnow
end