How do I make multiple x axes?
조회 수: 13 (최근 30일)
이전 댓글 표시
I am trying to create a plot with two x axes. One at the top and one at the bottom. The y axis has the same range.
I have salinity and temperature of a water column and the depth is on the y axis. I would like to make salinity and temperature different x axes.
Thanks in advance
댓글 수: 0
답변 (2개)
José-Luis
2014년 6월 16일
You could try a variation of the below:
aH(1) = axes;
aH(2) = axes;
y1 = rand(10,1);
y2 = rand(10,1);
x=(1:10)';
plot(aH(1),x,y1,'Color',rand(1,3));
plot(aH(2),x,y2,'Color',rand(1,3));
linkaxes(aH,'x')
set(aH(2),'Color','none','XAxisLocation','top','YAxisLocation','right');
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Two y-axis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!