Using Multiple X- and Y-Axes Command Axis Label
조회 수: 13 (최근 30일)
이전 댓글 표시
figure (9)
ax1 = gca; hl1 = line(x1,y1,'Color','r'); set(ax1,'XColor','r','YColor','r')
ax2 = axes('Position',get(ax1,'Position'),... 'XAxisLocation','top',... 'YAxisLocation','right',... 'Color','none',... 'XColor','k','YColor','k'); hl2 = line(x2,y2,'Color','k','Parent',ax2);
ylabel('Drag Force (lbf.)') xlabel('Time (s)')
The above only labels the top axis and the right axis. How do I label the left and the bottom axis?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2012년 11월 1일
편집: Azzi Abdelmalek
2012년 11월 1일
figure (9)
ax1 = gca;
hl1 = line(x1,y1,'Color','r');
set(ax1,'XColor','r','YColor','r')
ax2 = axes('Position',get(ax1,'Position'),'XAxisLocation','top',...
'YAxisLocation','right','Color','none','XColor','k','YColor','k');
hl2 = line(x2,y2,'Color','k','Parent',ax2);
ylabel(ax1,'Drag Force (lbf.)')% do the same with ax2
xlabel(ax1,'Time (s)')
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
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!