How to add 'Location' as the name one of the legends in a plot?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sai Charan
el 18 de Abr. de 2021
Comentada: Sai Charan
el 18 de Abr. de 2021
Here:
legend('Canada','USA', 'Location', 'bestoutside')
The above code has two countires in legend - Canada and USA
For example,
legend('Canada','Location', 'Location', 'bestoutside')
This does not work? Why?
Can we not name a legend as 'Location'?
If yes, how to?
0 comentarios
Respuesta aceptada
Jonas
el 18 de Abr. de 2021
Editada: Jonas
el 18 de Abr. de 2021
no problem using a cell as input for the legend function:
plot(1:3);
hold on;plot(1:4);
legend({'left','location'},'Location', 'bestoutside')
edit: because you asked why it doe not work your way: there are just some keywords when function inputs are processed, if they appear, there often has to be a specific input as following argument
Más respuestas (0)
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!