I have a very basic question regarding plotting pseudocolor plots in matlab. Say if I have a plot as follows:
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
Is it then possible for me to draw a line on this plot which highlights certain values, such as draw a line through values = 5? Please note that I want to avoid using contourf and would like to use pcolor in this instance.

hold onand plot anything on top of yourpcolorplot. – Eitan T Dec 19 '12 at 16:29