📄 mm2721.m
字号:
[X,Y,Z] = peaks;
subplot(1,2,1)
pcolor(X,Y,Z)shading interp % remove the grid lines
axis squaretitle('Figure 27.21a: Pseudocolor Plot')
subplot(1,2,2)
contourf(X,Y,Z,12) % filled contour plot with 12 contours
axis square
xlabel('X-axis'), ylabel('Y-axis')
title('Figure 27.21b: Filled Contour Plot')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -