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

1 visualizzazione (ultimi 30 giorni)
How can I change the lowest value's color with the commandline instead of clicking 'edit' ?

Risposta accettata

Walter Roberson
Walter Roberson il 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

Più risposte (0)

Categorie

Scopri di più su Colormaps in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by