필터 지우기
필터 지우기

How to plot 2 x-axis with pcolor and colormap

조회 수: 2 (최근 30일)
Shan  Chu
Shan Chu 2016년 6월 15일
댓글: Chad Greene 2016년 6월 16일
Dear all, I have troubles with plotting 2 x-axis with colormap. It seems like the first axis size will change with the function colormap. Also, the value of the colormap isn't right
X = rand(100,100);
x = linspace(1,100,100);
x2 = linspace(0.1,60,100);
y = linspace(100,200,100);
figure
ax1 = axes();
pcolor(ax1, x,y,X);
shading flat
h = colorbar;
ax2 = axes( 'Position', get(ax1, 'Position'), 'XAxisLocation', 'top', 'Xlim', [x2(1), x2(end)], 'YLim', get(ax1, 'YLim'), 'YTickLabel', []);
uistack(ax2, 'bottom')
shading flat
h = colorbar
ylabel(h, '| \kappa |')
colormap jet
Could you please help? Thanks
  댓글 수: 1
Chad Greene
Chad Greene 2016년 6월 16일
The second set of axes has no data associated with it, so the caxis values won't be right. What exactly are you trying to plot on the second set of axes?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by