8

没有实现它的最小示例:

[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也需要两个独立的设置。

4

1 回答 1

5

您可以通过连接两个颜色图来解决此问题,并确保函数的值能够访问颜色图的正确部分:

cm = [jet(64);gray(64)];
figure,
pcolor(X,Y,Z)
shading flat
hold on
%# Z in the contour starts after the maximum
%# of Z in pcolor
contour(X,Y,Z-min(Z(:))+max(Z(:))+2,'LineWidth',2)
%# apply the colormap
colormap(cm)

在此处输入图像描述

要获得更方便的解决方案,您可能还想看看本周的文件交换精选

于 2011-03-28T12:00:42.120 回答