Selecting plot for drawing text
조회 수: 4 (최근 30일)
이전 댓글 표시
I have two figures. If I would like to plot something in each plot, I may write with handles:
x = figure;
y = figure;
plot(gca(x), 1, 1);
plot(gca(y), 1, 1);
I would like to accomplish the same thing using the text and line commands. Is there a way to do this? Text and line don't allow axis handles to be passed in as arguments. Thanks in advance.
댓글 수: 0
채택된 답변
추가 답변 (1개)
Ping
2011년 7월 12일
I think you can use figure(1), figure(2) to create figure and switch the current figure.
댓글 수: 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!