Multiple colormap not working when using COLORMAP(AX,...)

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

 채택된 답변

Kelly Kearney
Kelly Kearney 2015년 10월 8일

0 개 추천

Prior to R2014b, colormaps could only be applied to a figure as a whole, not to individual axes. There are a few workarounds, such as using freezecolors, or adding an offset to the data in one subplot and creating a colormap that includes different colors for the two data ranges.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Blue에 대해 자세히 알아보기

질문:

2015년 10월 8일

댓글:

2015년 10월 8일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by