If I open a previously (before R2014b
) saved figure, the colors I used, for instance r
, k
, ... would appear according to the colormap they have been saved with. What is the fast way to convert the colors to their equivalent colors in the new colormap parula.
By equivalent colors I mean the standard sequence of colors that MATLAB
utilizes when we usehold on
command after each plot
command, without setting the color property in the `plot'. something like this:
plot(x,y1);hold on;plot(x,y2);
It should be pretty much automatic If I change the default colormap of the plot, but it is not. Is there a command for that?
The plots I have, each includes more than 20 curves that makes it annoying to change the colors manually.
The following seems to work.
The key is that, as stated in Loren's blog,
This is the property that stores the new
hold on
-colors used in R2014b. But this property applies to newly plotted lines, not to those already present from the file. So what my code above does is apply the colors defined byColorOrder
to theChildren
of the axes that are of type'line'
.I've observed (at least in R2010b) that newer plots have lower indices within the
children
array. That is, when a new plot is added to the axes, it gets the first position in theChildren
array, pushing older plots to higher indices. That's why in thefor
loop above the children index (n
) is descending while the new-color index (p
) is ascending. This assures that the line that was plotted first (higher index) gets the first of the new colors, etc.As an example, let's create a figure in R2010b:
The transformed figure is