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

1 回表示 (過去 30 日間)
wenhao yang
wenhao yang 2021 年 3 月 22 日
コメント済み: wenhao yang 2021 年 3 月 22 日
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 Center および File ExchangeColormaps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by