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