如何绘制色彩图?

时间:2012-05-19 17:24:34

标签: matlab colors color-mapping colorbar

我在Matlab中有一张欧洲地图,我有一些值,它们按区域变化。

如何绘制轮廓色彩图?标签颜色取决于这些值,我也想显示颜色栏。

1 个答案:

答案 0 :(得分:0)

a = peaks(40); # some random data
contourf(a); # plot filled contour map
colormap(mycolors); # mycolors should be an N by 3 matrix specifying your colors
colorbar; # shows the color bar on the side