Creation of a legend of a graph with a for loop
2 views (last 30 days)
Show older comments
Emilio Pulli
on 18 Nov 2021
Commented: Star Strider
on 20 Nov 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
0 Comments
Accepted Answer
Star Strider
on 18 Nov 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 Comments
Star Strider
on 20 Nov 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
More Answers (0)
See Also
Categories
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!