Try something like this:
[X,Y,Z] = peaks(42);
figure
contourf(X, Y, Z);
hold on
[c,h] = contourf(X, Y, Z, [0.5:0.01:1.5]);
h.LineStyle = ':';
h.Color = 'r';
hold off
Experiment to get the result you want.
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!