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' ?

0 件のコメント
採用された回答
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 Exchange で Red についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!