Creation of a legend of a graph with a for loop

4 次查看(过去 30 天)
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

采纳的回答

Star Strider
Star Strider 2021-11-18
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 个评论
Star Strider
Star Strider 2021-11-20
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by