其他分享
首页 > 其他分享> > matlab中subplot()函数的作用

matlab中subplot()函数的作用

作者:互联网

subplot() 用来平铺图片的位置,类似坐标。

clc
I= imread('street.png');
subplot(121)
imshow(I)
I1 = I(:,:,1);

nx3=waverec2(c,s,'sym4');
nx = cat(3,nx1,nx2,nx3);
subplot(122)
imshow(nx/256)

在这里插入图片描述

clc
I= imread('street.png');
subplot(221)
imshow(I)

nx3=waverec2(c,s,'sym4');
nx = cat(3,nx1,nx2,nx3);
subplot(222)
imshow(nx/256)

在这里插入图片描述

拿subplot(221)来说,就是一个2*2的矩阵画布,1代表图片处于第一个位置,画图演示:
在这里插入图片描述

标签:subplot,函数,nx3,imshow,nx,street,matlab,sym4
来源: https://blog.csdn.net/gongkeguo/article/details/121508666