matlab plot 动态演化
time = 0:0.05:2*pi;
x = 6*(1-cos(time)); y = sin(time); z = 7*exp(-(time-pi).^2);
% 如何把随着时间的演化也体现出来呢? %if you want to animate it 动态轨迹 for i=1:length(x) plot3(x(i),y(i),z(i),'*r'); ylim([-1 1]); xlim([0 15]); zlim([0 8]); hold on; pause(0.1); end
xlabel('x(meters)'); ylabel('y(meters)'); zlabel('Altitude(meters)');
还有一种绘制动图的方式:
clc; close all; x1=0;s=0.2;%确定起始点和增量 nframes=50;%确定总动画帧数 for k=1:nframes x1=x1+s;%确定画图时的横坐标终止值x1 x=0:0.
共有 0 条评论