Reverse/flip values in the colorbar axis
83 次查看(过去 30 天)
显示 更早的评论
Hi,
In the attached figure, I have reverse the values in the color bar i.e. red to be positive and blue to be negative. Please help me with this. I have tried flipud, but it changes the color pattern in the contour.
0 个评论
回答(1 个)
Bjorn Gustavsson
2020-10-15
编辑:Bjorn Gustavsson
2020-10-15
If you want exactly that colormap, but flip it you can do this:
cmp = colormap;
cmp = flipud(cmp);
colormap(cmp);
You should be able to re-set the colormap to jet in one call:
colormap(jet)
HTH
5 个评论
Bjorn Gustavsson
2022-4-28
Not that I disagree with your request for additional colormap-utilities, but "teribly cumbersome" might be a bit of an exageration for what can be done with something as simple as a one-liner:
colormap(flipud(colormap))
that is only 26 characters...
Adi Purwandana
2023-2-25
I tried some above codes... but I found working for me is:
colormap(flipud(jet))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Colormaps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!