Could anyone help me how to generate the following legend.
3 ビュー (過去 30 日間)
古いコメントを表示
I want to have the legend as
* A o B
^ C > D
- E -- F
Could anyone please help me on this.
1 件のコメント
KSSV
2021 年 8 月 8 日
You have not acknowledged your previous questions which were answered. You have asked many very simple questions, instead you could read the documentation.
回答 (1 件)
KSSV
2021 年 8 月 8 日
str = {'* A o B', '^ C > D', ' - E -- F'} ;
A = rand(10,3) ;
plot(A)
legend(str)
参考
カテゴリ
Help Center および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!