how can i get the default colormap to be JET in matlab 2014b?

15 views (last 30 days)
old colormap JET was better. how do I get it back?

Accepted Answer

Mike Garrity
Mike Garrity on 2 Oct 2015
There are two different things getting confused here.
There's the Colormap. The default for that changed from jet to parula. As Steven said, you can easily change the default for that using the instructions he pointed to. The Colormap is used by objects which are converting numeric data into colors. Examples include scatter, surface, and indexed images.
Then there's the ColorOrder. The ColorOrder is used by commands which just want to create a bunch of different colored objects. Examples include plot and errorbar. The default ColorOrder also changed in R2014b, but neither the old nor the new ones have names. The old one looked a bit like jet, but it actually wasn't quite. To get the old ColorOrder back, you would need to do this:
set(groot,'DefaultAxesColorOrder',[0 0 1; 0 .5 0; 1 0 0; 0 .75 .75; ...
.75 0 .75; .75 .75 0; .25 .25 .25])
It will probably still look a little different because of the antialiasing. That softens the colors a bit so they don't pop quite as much as they did in old versions. You could turn off GraphicsSmoothing if you really wanted them to look just like the old days.

More Answers (2)

Sean de Wolski
Sean de Wolski on 2 Oct 2015
set(groot,'DefaultFigureColormap',jet)
But you might want to read these blog posts firsts:
  1 Comment
Leo Diaz
Leo Diaz on 2 Oct 2015
I tried this but the plots don't have jet colors. how do I get the jet colors as default in the plots?

Sign in to comment.


Steven Lord
Steven Lord on 2 Oct 2015
We haven't removed JET from the product, we simply change the default. You can add a command to your startup.m file to change the default colormap following the instructions in the documentation. The property whose default value you want to set is the Figure object's Colormap property.
  4 Comments
Leo Diaz
Leo Diaz on 2 Oct 2015
colormap does not change the plot colors, just the surf and pcolor ones. new plot colors are hard to see. the old ones JET were much much better. can I have them back?
Mike Garrity
Mike Garrity on 2 Oct 2015
Sean said:
Change the 'DefaultFigureColorOrder'
That should be 'DefaultAxesColorOrder'. The Colormap is on the figure, but the ColorOrder is on the axes.

Sign in to comment.

Categories

Find more on Colormaps in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!