Creation of a legend of a graph with a for loop

4 visualizaciones (últimos 30 días)
Emilio Pulli
Emilio Pulli el 18 de Nov. de 2021
Comentada: Star Strider el 20 de Nov. de 2021
I have a graph containing different curves obtained at different velocities and I need a legend linking each curve to the relative velocity at which it has been obtained. Can I create the legend of the graph with this kind of loop without typing an infinite line containing the values of all the velocities?
for l=1:length(v)
legend([num2str(v(l)),'m/s '])
end

Respuesta aceptada

Star Strider
Star Strider el 18 de Nov. de 2021
The problem description is a bit difficult to interpret, however there are at least two possible solutions (if I interpret it correctly).
The first is described in the legend documentation section on Specify Legend Labels During Plotting Commands
The second is described in the legend documentation on Included Subset of Graphics Objects in Legend
I believe one of these (if not both) should work. If there are problems, post back.
Note that the 'DisplayName' option also permits using sprintf to change the display name appropriately with respect to the numeric arguments in the plot call.
.
  4 comentarios
Emilio Pulli
Emilio Pulli el 20 de Nov. de 2021
Thanks man, really really appreciated!
Star Strider
Star Strider el 20 de Nov. de 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by