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

1 visualización (últimos 30 días)
How can I change the lowest value's color with the commandline instead of clicking 'edit' ?

Respuesta aceptada

Walter Roberson
Walter Roberson el 22 de Mzo. de 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

Más respuestas (0)

Categorías

Más información sobre Colormaps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by