Could anyone help me how to generate the following legend.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to have the legend as
* A o B
^ C > D
- E -- F
Could anyone please help me on this.
1 Kommentar
KSSV
am 8 Aug. 2021
You have not acknowledged your previous questions which were answered. You have asked many very simple questions, instead you could read the documentation.
Antworten (1)
KSSV
am 8 Aug. 2021
str = {'* A o B', '^ C > D', ' - E -- F'} ;
A = rand(10,3) ;
plot(A)
legend(str)
1 Kommentar
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!