get plotyy second axis handle
조회 수: 2 (최근 30일)
이전 댓글 표시
I know I can get the second axis handle for plotyy with
[AX,~,~] = plotyy(x1,y1,x2,y2)
and the handle is AX(2) but i use the plotyy function inside another function so AX is deleted because its a local variable
when i use gca (after running the function) in the command window I get what would be AX(1)
So my question is how to get the second axis handle after running the function
댓글 수: 0
채택된 답변
Paulo Silva
2011년 4월 13일
AX=findall(0,'type','axes');
AX(2) %what you are looking for?!
댓글 수: 3
Paulo Silva
2011년 4월 14일
You can compare the handles
AX=findall(0,'type','axes');
if AX(1)==gca
MySecondAxes=AX(2)
else
MySecondAxes=AX(1)
end
MySecondAxes %the handle you are interested in (not the current axes)
추가 답변 (2개)
Jarrod Rivituso
2011년 4월 13일
This also would work:
secondAxes = findobj('Type','axes','Color','none')
댓글 수: 4
참고 항목
카테고리
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!