필터 지우기
필터 지우기

How to Hide Legend of Plot 2?

조회 수: 2 (최근 30일)
Matty
Matty 2022년 10월 14일
답변: Star Strider 2022년 10월 14일
zeys = n;
text = ['Run ',num2str(zeys)];
plot(x,y,'DisplayName',text);
plot(xmax,ymax,'^r')
legend show

답변 (1개)

Star Strider
Star Strider 2022년 10월 14일
Perhaps —
zeys = n;
text = ['Run ',num2str(zeys)];
hp1 = plot(x,y,'DisplayName',text);
hp2 = plot(xmax,ymax,'^r');
legend(hp1, 'Location','best)
.
.

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by