The back ground color is too dark, is it possible to make it lighter ?

2 views (last 30 days)
How can I change the lowest value's color with the commandline instead of clicking 'edit' ?

Accepted Answer

Walter Roberson
Walter Roberson on 22 Mar 2021
You could use colormap() to activate a different set of colors.
For example:
cmap = colormap(); %fetch current one
cmap(1:20,:) = []; %get rid of the 20 darkest shades
colormap(cmap); %activate the revised colormap

More Answers (0)

Categories

Find more on Colormaps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!