legend_reverse

Versione 3.0 (1,25 KB) da Moses
Create legend in reverse order. Uses the same name-pair arguments as the default legend() function.
44 download
Aggiornato 27 ago 2020

Visualizza la licenza

Create legend in reverse order. Uses the same name-pair arguments as the default legend() function.
-Line plots
-Stacked bar graphs

Example 1:
x = 1:3;
y = [2 2 3; 2 5 6; 2 8 9; 2 11 12];
plot(x, y, 'LineWidth', 2)
legend_reverse('blue', 'red', 'orange', 'purple', 'Location', 'northwest');

Example 2:
y = [2 2 3; 2 5 6; 2 8 9; 2 11 12];
bar(y,'stacked');
legend_reverse('blue', 'red', 'orange', 'Location', 'northwest');

Cita come

Moses (2024). legend_reverse (https://www.mathworks.com/matlabcentral/fileexchange/79577-legend_reverse), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2020a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Riconoscimenti

Ispirato da: Flip bar legend

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
3.0

-Fix function name.

2.0

-Edited function name and example.

1.0