matlab中subplot()函数的作⽤subplot() ⽤来平铺图⽚的位置,类似坐标。
clc
I= imread('street.png');
用subplot函数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代表图⽚处于第⼀个位置,画图演⽰:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论