Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Matlab にヨーロッパの地図があり、地域ごとに変化するいくつかの値があります。
等高線カラーマップをプロットするにはどうすればよいですか? ラベルの色はこれらの値に依存し、カラーバーも表示したいと思います。
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