combineColormaps
Version 1.0.0 (1.49 KB) by
TjeerdB
Combine two color maps to highlight significant values in image
function cmap = combineColormaps(low, high, cutoff)
% Creates a new colormap by combining two colormaps. Low and high specificy
% the minimum and maximum of your data (clim) and cutoff the value at which
% to switch to the other colormap
%
% Example:
%
% [X,Y] = meshgrid(-10:0.1:10,-10:0.1:10);
% f = sinc(sqrt((X/pi).^2+(Y/pi).^2));
% clim = [min(f(:)),max(f(:))];
% imagesc(f,clim)
% cmap = combineColormaps(clim(1), clim(2), 0.2);
% colormap(cmap)
% colorbar
Cite As
TjeerdB (2026). combineColormaps (https://uk.mathworks.com/matlabcentral/fileexchange/70441-combinecolormaps), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2018b
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
- MATLAB > Graphics > Images > Modify Image Colors >
Find more on Modify Image Colors in Help Center and MATLAB Answers
Tags
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.0.0 |
