I have a colorplot (from imagesc) with an alpha map. I'd like the colorbar to reflect the alpha (notice that in the image below the colormaps are the same). I found solutions online but none seem to work in R2014b.
Code is here:
subplot(2,1,1)
A = imagesc(meshgrid(0:10,0:5));
alpha(A,1)
colorbar
subplot(2,1,2)
B = imagesc(meshgrid(0:10,0:5));
alpha(B,.7)
colorbar
James
In pre-R2014b MATLAB, the
colorbar
is itself an axis containing an image for which you can set alpha:Instead of
gcf
, use the handles of the individual subplots.Or save its handle when you make it:
From R2014b on, the colorbar is creating using the new handle graphics system, where there is no longer a child image to modify. The
colorbar
is created internally withcolorbarHGUsingMATLABClasses
, which is an obfuscated .p file, so it's no clear how it's constructed.