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

1 次查看(过去 30 天)
How can I change the lowest value's color with the commandline instead of clicking 'edit' ?

采纳的回答

Walter Roberson
Walter Roberson 2021-3-22
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Colormaps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by