matlab_学习

subplot(2,2,1) 
x = linspace(0,10) ;
y1 = sin(x) ;
plot (x,y1) 
title ('subplot 1 :sin(x)')

subplot(2,2,2) 
y2 = sin(2*x) ;
plot(x,y2) 
title ('subplot 2: sin(2x)')

subplot(2,2,3) 
y3 = sin(3*x) ;
plot(x,y3) 
title ('subplot 3:sin(3x)');

subplot(2,2,4) 
y4 = sin(4*x);
plot(x,y4)
title('subplot 4 : sin(4x)')


subplot(2,2,1)
x = linspace(-3.8,3.8) ;
y_cos = cos(x);
plot (x, y_cos);
title('subplot 1 :cosine')

subplot(2,2,2)
y_poly = 1 - x.^2./2  + x.^4./24 ;
plot(x,y_poly,'g')%g means green 
title ('subplot 2 : polynomial')

subplot(2,2,[3,4]);
plot(x,y_cos,'b',x,y_poly,'g');%b means blue
title('subplot 3 and 4 : both')

for k = 1 : 4 
    data = rand(1,10) ;
	subplot (2, 2 ,k)
	stem(data)
end
subplot (2,2,2,'replace')%将第二个子图去除

有关子图的subplot的一些使用方法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值