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

1 Ansicht (letzte 30 Tage)
How can I change the lowest value's color with the commandline instead of clicking 'edit' ?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 22 Mär. 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

Weitere Antworten (0)

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by