how can i get the default colormap to be JET in matlab 2014b?
Show older comments
old colormap JET was better. how do I get it back?
Accepted Answer
More Answers (2)
Sean de Wolski
on 2 Oct 2015
set(groot,'DefaultFigureColormap',jet)
But you might want to read these blog posts firsts:
Steven Lord
on 2 Oct 2015
0 votes
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
on 2 Oct 2015
Sean de Wolski
on 2 Oct 2015
Change the 'DefaultFigureColorOrder'
Leo Diaz
on 2 Oct 2015
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.
Categories
Find more on Color and Styling 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!