在matlab中绘制特定图形中的多个图形

时间:2014-09-05 15:46:58

标签: matlab plot matlab-figure

所以,我有很多数字,我想选择其中一个,然后将其绘制成另一个图,我该怎么做?

提前致谢

1 个答案:

答案 0 :(得分:1)

在这种情况下,我会亲自使用subplotfigurehold all

因此,您的代码如下所示:

clc;clear; a = [ 1.8 2.5 6.4 ] ; % acceleration 
t = 0:.01:15 ; n = 1 ; 
figure; 
while n < 4 
velocity = a(n)*t ; 
position = 0.5*a(n)*t.^2 + velocity.*t ; 
figure(1);plot(t,velocity);
hold all;
figure(2);plot(t,position);
n = n + 1 ; 
hold all;
end
hold off;