usercolormap
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;
Citar como
Yo Fukushima (2024). usercolormap (https://www.mathworks.com/matlabcentral/fileexchange/7144-usercolormap), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- MATLAB > Graphics > Formatting and Annotation > Colormaps > Blue >
Etiquetas
Agradecimientos
Inspiración para: COLORMAP and COLORBAR utilities (Jul 2014), Shaded Correlation Table, XY 3D Density Plot (for two-class data)
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 | BSD License added.
|