Could anyone help me how to generate the following legend.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to have the legend as
* A o B
^ C > D
- E -- F
Could anyone please help me on this.
1 comentario
KSSV
el 8 de Ag. de 2021
You have not acknowledged your previous questions which were answered. You have asked many very simple questions, instead you could read the documentation.
Respuestas (1)
KSSV
el 8 de Ag. de 2021
str = {'* A o B', '^ C > D', ' - E -- F'} ;
A = rand(10,3) ;
plot(A)
legend(str)
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!