我在Matlab中有一张欧洲地图,我有一些值,它们按区域变化。
如何绘制轮廓色彩图?标签颜色取决于这些值,我也想显示颜色栏。
答案 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