usercolormap

版本 1.0.0.0 (6.1 KB) 作者: Yo Fukushima
usercolormap lets you create your own colormap in a simple way. Intensity scale can be respected.
3.6K 次下载
更新时间 2016/4/1

查看许可证

USERCOLORMAP(COLOR1,COLOR2,COLOR3,...) creates a colormap with colors specified by 1x3 vectors (COLOR1, COLOR2, COLOR3...).

When the number of input colors are three for example, the function linearly interpolates every column of a 3x3 matrix [COLOR1;COLOR2;COLOR3] to 256 values, which is to be used as an input to COLORMAP. It means that colors between those you specified change gradually.

If you put a number (>0) as the last input argument (USERCOLORMAP(...,NUM)), then the intensity scaling is respected by automatically adjusting colors, in such a way that the first color be the darkest (or lightest) and the last be the lightest (or darkest). This is useful when figures have to be printed out or photocopied in grayscale.

When using this option, n-th intensity I(n) is expressed by I(n) = I(1) + (I(256)-I(1))*((n-1)/255)^NUM. When NUM = 1, then the scaling is linear (as in colormap(gray)). 1.2 can be a good compromise between color map and intensity scale. You can check how it looks in intensity (black and white) by exporting a figure to a black/white eps format.

You can also create an m-script like
%%%%%%
function C = mycolor
C = usercolormap([0 0 0],[1 0 0],[1 1 1]);
%%%%%%
and call this colormap by 'colormap(mycolor)'.

(Example 1)
color1 = [1 0 0];
color2 = [1 1 1];
color3 = [0 0 1];
figure;
colormap(usercolormap(color1,color2,color3)),colorbar;

(Example 2)
color1 = [0 0 0];
color2 = [1 0 0];
color3 = [0.2 0.2 1];
color4 = [1 1 0];
color5 = [1 1 1];
figure;
C = usercolormap(color1,color2,color3,color4,color5,1);
colormap(C),colorbar;

引用格式

Yo Fukushima (2024). usercolormap (https://www.mathworks.com/matlabcentral/fileexchange/7144-usercolormap), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R11.1
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Blue 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0

BSD License added.
An option is added, Description is updated.