Multiple colormap not working when using COLORMAP(AX,...)
Show older comments
Hi, when trying to set two colormaps on one image, with the simple example below, the first colormap get overwritten.
figure
ax1 = subplot(2,1,1);
surf(peaks)
colormap(ax1,spring)
ax2 = subplot(2,1,2);
surf(peaks)
colormap(ax2,winter)
matlab R2013a
1 Comment
Image Analyst
on 8 Oct 2015
What MATLAB version do you have?
Accepted Answer
More Answers (0)
Categories
Find more on Blue in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!