How to make map with unequal colorbar
3 views (last 30 days)
Show older comments
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 Comments
DGM
on 28 May 2024
Edited: DGM
on 29 May 2024
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.
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Colorbar in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!