没有实现它的最小示例:
[X,Y,Z] = peaks;
figure;
pcolor(X,Y,Z);
shading flat;
hold all;
axes;
contour(X,Y,Z);
colormap gray; % this should only apply to the contour plot axes...
axis off; % ... but it doesn't
这显示了灰度颜色图中的等高线图和伪彩色图。但是,我想要实现的只是将轮廓变为灰色。
这只是一个极简示例,实际上等值线图是具有不同范围的不同数据,因此caxis
也需要两个独立的设置。