How I connect more legends?
조회 수: 1 (최근 30일)
이전 댓글 표시
If I create a plot and then I connect 2 or more plots from different scripts. I want to have legends there about all plots. How I connect legends from more scripts? Thank you
댓글 수: 1
Geoff Hayes
2017년 3월 28일
Dominika - can you provide an example of when you create a plot and then connect 2 or more plots from different scripts. Do you mean that you just add two or more plots to the axes where you had "drawn" your initial plot? Please clarify.
답변 (1개)
Thorsten
2017년 3월 28일
You can use
h(1) = plot(... %your first plot
h(2) = plot(... % your second plot from another script
h(3) = plot(... % your third plot
% ... and so on
And then use
legend(h, {'first', 'second', 'third'}) % add more entries if you have more than three plots
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!