How can I reverse colormap in contourfm?
8 次查看(过去 30 天)
显示 更早的评论
I'd like to use the reverse of jet colormap in contourfm. contourfm seems to only accept standard string values for predefined colormaps.
0 个评论
采纳的回答
Walter Roberson
2012-11-26
If you want to reverse the colormap, just do it:
colormap(flipud(jet))
2 个评论
M.Prasanna kumar
2019-11-3
is there a way to assign yellow color to blue and blue to yellow in an image ??
im using imagesc command
i have attached my image
Tony Azar
2022-5-26
Here is an example on how to reverse colors:
C = [0 2 4 6; 8 10 12 14; 16 18 20 22];
imagesc(C), colormapeditor
once the editor is loaded, click on "Edit Size and Colorspace" then check "Reverse"
更多回答(1 个)
Tony Azar
2022-6-1
Here is how you can reverse the "jet" colormap in contourfm.
This example is from :
[N,R] = egm96geoid;
load coastlines
worldmap('world')
levels = -120:20:100;
contourfm(N,R,levels,'LineStyle','none')
geoshow(coastlat,coastlon,'Color','k')
contourcbar
colormap('jet')
colormapeditor
once the editor is loaded, click on "Edit Size and Colorspace" then check "Reverse"
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Mapping Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!