I would like to show a non-uniform colorbar as in the first picture. I have tried the code below. 'mycamp4' is a colormap manually saved. The result is shown as the second figure. The number 0.1
and 1.5
will be too closed too see. How can I make the colorbar like in the first picture?
v = [0.1 1 1.5 5 7.5 10 30];
v_2 = [0.1 1.5 5 7.5 10 30];
contourf(X,Y,pdf_normal',v);
h = colorbar;
load('MyColormaps','mycmap4');
set(gcf,'Colormap',mycmap4);
set(h, 'YTick', v_2)
Picture 1:
Picture 2:
Here a step by step explanation.
First consider the following example:
which will give you the following plot:
It has linear data and a linear colormap. Now I want to scale the
Z
-Data to get it non-linear like in your case. I chose a simple squaring of the data.Thats the actual example data, similar to yours:
Now we have non-linear data, but still a linear
colormap
andcolorbar
.Until now everything was to generate example data similar to yours.
Now the actual answer:
Get the data of your plot:
and scale it with a relation you hopefully know more or less:
Plot that scaled data:
get the
Y-Ticks
andscale it with the inverse function
, like your data:set these inversly scaled colorbar ticks:
and you finally get a seemingly linearized plot (but you could just backup your non-linear data from before), with a with non-linear colormap and colorbar ticks.
As expected, the plot looks the same like in the first the example, but with a scaled colorbar axis.
If you don't have any functional relationship, try to get one, e.g. with the curve fitting toolbox.