color contour different then pcolor

3 vues (au cours des 30 derniers jours)
Matthias Pospiech
Matthias Pospiech le 15 Fév 2012
I am using pcolor together with contour lines. However the value of the lines can no be identified from the plot, as can be seen in the following code
[x y data] = peaks(1000);
data = data / max(max(data));
colorDepth = 1000;
colormap(jet(colorDepth));
hold on;
pcolor(x,y,data); shading flat;
[C,hfigc] = contour(x, y, data,[0:0.1:1]);
set(hfigc, ...
'LineWidth',1.0, ...
'Color', [1 1 1]);
hold off;
hcb = colorbar('location','EastOutside');
I would rather want the pcolor to be in gray values and he contour lines in colors. However then I need a legend for the contour lines as well.

Réponse acceptée

Matthias Pospiech
Matthias Pospiech le 22 Fév 2012
The question was answered on stackoverflow.com.

Plus de réponses (0)

Catégories

En savoir plus sur Contour Plots dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by