How to make map with unequal colorbar
3 次查看(过去 30 天)
显示 更早的评论
Hello everyone,
I know this question has been asked numeroud times, but still I am stuck at this.
I want to make a create a map in which colorbar is cutomized. I am pasting a example
Any help or tips will be great.
Thanks
3 个评论
DGM
2024-5-28
编辑:DGM
2024-5-29
It's not clear whether the triangle bits are included in the colortable or not. It doesn't make sense that they would be, but either way, it doesn't make sense that one is white, and the other replicates the prior color in the table.
For all colors shown:
CT = [255 255 255;
220 220 220;
175 238 238;
0 255 255;
144 238 144;
255 255 0;
255 165 0;
255 0 0;
139 0 0;
139 0 0]/255;
Excluding the ends:
CT = [220 220 220;
175 238 238;
0 255 255;
144 238 144;
255 255 0;
255 165 0;
255 0 0;
139 0 0]/255;
Make of that what you will.
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Colorbar 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!