Creation of a legend of a graph with a for loop

1 回表示 (過去 30 日間)
Emilio Pulli
Emilio Pulli 2021 年 11 月 18 日
コメント済み: Star Strider 2021 年 11 月 20 日
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 件のコメント
Emilio Pulli
Emilio Pulli 2021 年 11 月 20 日
Thanks man, really really appreciated!
Star Strider
Star Strider 2021 年 11 月 20 日
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by