how legend update with variable
3 ビュー (過去 30 日間)
古いコメントを表示
t=linspace(0.1,1,10)
legend ('0.1','0.2','0.3',......upto '1')
how legend update with variable 't' with there values on graph
4 件のコメント
Bruno Luong
2019 年 8 月 23 日
編集済み: Bruno Luong
2019 年 8 月 23 日
There is something called ARRAYFUN
legend_txt = arrayfun(@(x)sprintf('%.1f',x),t,'UniformOutput',0)
回答 (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!