所以,我有很多数字,我想选择其中一个,然后将其绘制成另一个图,我该怎么做?
提前致谢
答案 0 :(得分:1)
在这种情况下,我会亲自使用subplot
或figure
和hold 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;