I was trying to invert the colormap (change positive/negative color directions) with a call to 'flipud':
colormap(flipud(hot)); % flips color map
colormap(flipud('hot')); % no effect
I didn't expect this result. For clarification, is this because the inner call to flipud is flipping the string (resulting in an identical string) and loading the same colormap it was before? While without the quotes, it is flipping the actual matrix of color values?