1

我在 Matlab 中有一张欧洲地图,我有一些值,这些值会按地区进行更改。

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

4

1 回答 1

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
于 2012-05-19T23:03:56.227 回答