For 2 curves, how to have xticks on both the above and below of x-axis?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all, I plot the attached figure using this code
clear; clc;
x1 = [1 3 5 7];
x2 = [1 2 4 7];
data1 = [1 2 3 4];
data2 = [4 3 2 1];
hAx1 = semilogy(x1, data1, 'b-^');
hold on
hAx2 = semilogy(x2, data2, 'k-v');
I'd like to have x1 on top and x2 on below of the x-axis using xticks, so the figure would show (1 3 5 7) on the below of x-axis with blue numbers and show (1 2 4 7) on the top of the x-axis with black numbers. Such that the 2 curves are differentiated.
Many thanks!
댓글 수: 0
답변 (2개)
Akira Agata
2018년 5월 15일
The following is one way to do that. Please see the following link for more details.
hAx1 = semilogy(x1, data1, 'b-^');
hold on
hAx2 = semilogy(x2, data2, 'k-v');
ax1 = gca;
ax1.XColor = 'b';
ax1.XTick = [1 3 5 7];
ax2 = axes(...
'Position', ax1.Position,...
'XAxisLocation', 'top',...
'Color', 'none',...
'YTick', [],...
'XLim', [1 7],...
'XTick', [1 2 4 7]);
the cyclist
2018년 5월 14일
The easiest way to get something close to what you want is to use the yyaxis command. Take a look at the examples there.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!