码迷,mamicode.com
首页 > 其他好文 > 详细

MATLAB中subplot的用法

时间:2016-10-29 22:24:32      阅读:505      评论:0      收藏:0      [点我收藏+]

标签:target   div   blog   txt   技术分享   key   src   keyword   nbsp   

 

写成subplot(m,n,p)或者subplot(mnp)。

subplot是将多个图画到一个平面上的工具。其中,m表示是图排成m行,n表示图排成n列,也就是整个figure中有n个图是排成一行的,一共m行,如果第一个数字是2就是表示2行图。p是指你现在要把曲线画到figure中哪个图上,最后一个如果是1表示是从左到右第一个位置。下面是两个例子,可加深理解,

>> t=0:0.001:1;
>> y1=sin(10*t);
>> y2=sin(15*t);
>> subplot(211)
>> plot(t,y1)
>> subplot(212)
>> plot(t,y2)

出来的结果为:

技术分享

x1=[1 2 3];x2=x1;x3=x2;x4=x1;
y1=[2 4 6];y2=2*y1;y3=3*y1;y4=4*y1;
subplot(2,2,1)
plot(x1,y1);
axis([0,20,0,20])
subplot(2,2,2)
plot(x2,y2);
  axis([0,20,0,20])
subplot(2,2,3)
plot(x3,y3)
  axis([0,20,0,20])
  subplot(2,2,4)
plot(x4,y4)
axis([0,20,0,20])

结果为:

技术分享

MATLAB中subplot的用法

标签:target   div   blog   txt   技术分享   key   src   keyword   nbsp   

原文地址:http://www.cnblogs.com/linkzijun/p/6011825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!