legend
22 ビュー (過去 30 日間)
古いコメントを表示
What does string1, string2 and s fourth mean in explanation underneath
is it saved items? or something else?
0 件のコメント
採用された回答
Naz
2011 年 10 月 13 日
when you do plot something you can specify your 'something' by the legend to know which plot corresponds to which function. try following: t=0:0.1:10;
y1=2*t;
y2=4*t;
plot(t,y1,t,y2);
legend('2*t','4*t');
0 件のコメント
その他の回答 (2 件)
Mav Sam
2017 年 12 月 19 日
hi, so I'm plotting functions that depend on a variable 'r' that perhaps changes 10 times, hence r is a variable and its elements can be identified as r(i) How do I include code in a legend argument, such that for 10 curves that are plotted representing 10 diff values of r, the legend displays the corresponding value of r that is being represented by the legend. Thanks for any help Thanks. Sam
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!