
subplot,it can not show the line's name in plot broswer
조회 수: 1 (최근 30일)
이전 댓글 표시
it works well when not using subplot ,| why? how to handle it |

댓글 수: 0
채택된 답변
Mischa Kim
2014년 3월 21일
Roger, are you referring to the DisplayName?
subplot(2,1,1)
h1 = plot(x,y1)
set(h1,{'DisplayName'},{'xy1'})
subplot(2,1,2)
h2 = plot(x,y2)
set(h2,{'DisplayName'},{'xy2'})
Alternatively, you can set this property in the Property Editor:

추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!