color contour different then pcolor

3 ビュー (過去 30 日間)
Matthias Pospiech
Matthias Pospiech 2012 年 2 月 15 日
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.

採用された回答

Matthias Pospiech
Matthias Pospiech 2012 年 2 月 22 日
The question was answered on stackoverflow.com.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by