突出显示伪彩色图中的某些值

时间:2012-12-19 15:51:44

标签: matlab plot

我有一个关于在matlab中绘制伪彩色图的基本问题。如果我有一个情节如下:

d1 = 1:4;
d2 = 1:4;
dat = [2,3,4,1;...
    3,4,7,1;...
    8,7,6,1;...
    2,3,3,1];
pcolor(d1,d2,dat);shading interp

那么我可以在这个图上绘制一条线来突出显示某些值,例如通过值= 5画一条线吗?请注意,我想避免使用contourf,并希望在此实例中使用pcolor。

1 个答案:

答案 0 :(得分:5)

您可以使用contourpcolor图上绘制轮廓线。

d1 = 1:4;
d2 = 1:4;
dat = [2,3,4,1;...
3,4,7,1;...
8,7,6,1;...
2,3,3,1];
pcolor(d1,d2,dat);
shading interp
hold on

%# use the same contour level twice if you only have a single one
contour(dat,[5 5],'color','k','lineWidth',2)

enter image description here