rgbmap color maps
This function requires the rgb function found here: http://www.mathworks.com/matlabcentral/fileexchange/46872
The rgb function uses a database which was created by showing hundreds of thousands of viewers more than 900 of the most commonly-used colors on the internet, and getting users to use their own words to describe that color. The result is a database of the most commonly-used names for colors, the way they are perceived on computer monitors.
The rgbmap function presented here creates color maps using any number of these strings as inputs.
SYNTAX
cmap = rgbmap('first color name','second color name')
cmap = rgbmap('first color name','second color name',...,'nth color name')
cmap = rgbmap(...,levels)
rgbmap(...)
DESCRIPTION
cmap = rgbmap('first color name','second color name') creates an RGB color map cmap from some first color to a second color.
cmap = rgbmap('first color name','second color name',...,'nth color name') creates a color map linearly scaled between any number of colors.
cmap = rgbmap(...,M) specifies the approximate number of levels |M| of the M x 3 output colormap.
rgbmap(...) sets the color map without creating an array in the workspace.
EXAMPLE
The example image shown above was created like this:
surf(peaks);
colorbar
rgbmap('pinkish purple','dark taupe','tiffany blue','azure','army green')
Zitieren als
Chad Greene (2024). rgbmap color maps (https://www.mathworks.com/matlabcentral/fileexchange/46874-rgbmap-color-maps), MATLAB Central File Exchange. Abgerufen.
Kompatibilität der MATLAB-Version
Plattform-Kompatibilität
Windows macOS LinuxKategorien
- MATLAB > Graphics > Formatting and Annotation > Colormaps > Green >
- MATLAB > Graphics > Formatting and Annotation > Colormaps > Blue >
Tags
Quellenangaben
Inspiriert von: freezeColors / unfreezeColors, COLORMAP and COLORBAR utilities (Jul 2014), RGB triple of color name, version 2, Red Blue Colormap, Generate maximally perceptually-distinct colors, XKCDIFY, Build custom colormaps, AdvancedColormap, rgb2hex and hex2rgb, Intuitive RGB color values from XKCD
Inspiriert: paruly, Cyclic color map, Convert between RGB and Color Names, How to map sea level rise, MatPlotLib Perceptually Uniform Colormaps
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Live Editor erkunden
Erstellen Sie Skripte mit Code, Ausgabe und formatiertem Text in einem einzigen ausführbaren Dokument.
rgbmapdemo/html/
Version | Veröffentlicht | Versionshinweise | |
---|---|---|---|
1.2.0.0 | Fix to ensure correct number of output levels. |
||
1.1.0.0 | included link to rgb function. |
||
1.0.0.0 |