Effacer les filtres
Effacer les filtres

How to Hide Legend of Plot 2?

2 vues (au cours des 30 derniers jours)
Matty
Matty le 14 Oct 2022
zeys = n;
text = ['Run ',num2str(zeys)];
plot(x,y,'DisplayName',text);
plot(xmax,ymax,'^r')
legend show

Réponses (1)

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

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by