MATLAB: Colorbar label beneath colorbar

colorbar label

Dear all,
how can set the colorbarlabel underneath the colorbar if the colorbar is set:
c=colorbar('location', 'SouthOutside');
For clarificaton, the figure should look like (from top to bottom):
1) title 2) figure 3) xlabel 4) colorbar 5) clabel
Doing in it in the plot editor would not be an option.
Thanks for your help.

Best Answer

C = colorbar('location','SouthOutside');
set(get(C,'XLabel'),'String','Colour Bar Label Text')
Related Question