custom colormap
This function is useful if you don't want to use the linear scaled colormap that are the default in Matlab.
USAGE:
CUSTOMCMAP(cbar_labels,user_cmap,minMaxValues)
% INPUT:
% cbar_labels - Vector (n x 1) of monotonically increasing ranges of data
% user_cmap - Matrix ((n-1) x 3) of colormap you want to see
% minMaxValues - Vector (2 x 1) of minimum and maximum value of data
% that is plotted
%
%
% EXAMPLES:
data = rand(10,10);
minVal = min(min(data));
maxVal = max(max(data));
image(data,'CDataMapping','scaled');
cbar_labels = [0 0.12 0.2 0.3 0.5 0.6 0.75 0.8 1]; % user defined ranges
user_cmap = jet(8); % user defined colormap
customcmap(cbar_labels,user_cmap,[minVal maxVal])
Bug and comments are welcome.
Citation pour cette source
Durga Lal Shrestha (2026). custom colormap (https://fr.mathworks.com/matlabcentral/fileexchange/36501-custom-colormap), MATLAB Central File Exchange. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxCatégories
- MATLAB > Graphics > Labels and Styling > Color and Styling >
- MATLAB > Graphics > Labels and Styling > Labels and Annotations > Colorbar >
Tags
Remerciements
A inspiré : Valcolor
Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
| Version | Publié le | Notes de version | |
|---|---|---|---|
| 1.1.0.0 | Minor bug fixed. |
||
| 1.0.0.0 |
