How to add 'Location' as the name one of the legends in a plot?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Jonas
il 18 Apr 2021
Modificato: Jonas
il 18 Apr 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Legend in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!