📄 lapulasitaxingfenjieh.m
字号:
figure(9)
Lp3h=D2;
subplot(4,1,1)
image(Lp3h)
colormap(map)
axis([0 258 0 140])
axis off
title('3层:18×33')
F1=interp2(D2,'spline');
Lp2h=C2-F1;
subplot(4,1,2)
image(Lp2h)
colormap(map)
axis([0 258 0 140])
axis off
title('2层:35×65')
F2=interp2(C2,'spline');
F2(70,129)=0;
Lp1h=B2-F2;
subplot(4,1,3)
image(Lp1h)
colormap(map)
axis([0 258 0 140])
axis off
title('1层:70×129')
F3=interp2(B2,'spline');
F3(140,258)=0;
Lp0h=B-F3;
subplot(4,1,4)
image(Lp0h)
colormap(map)
axis([0 258 0 140])
axis off
title('0层:140×258')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -