how include e1 dot in legend ?
3 ビュー (過去 30 日間)
古いコメントを表示
how to include e1 dot in legend and how reduse the values in y axis?
0 件のコメント
採用された回答
Walter Roberson
2022 年 7 月 25 日
plot(rand(1,5))
legend({'$\dot{e_1}$'}, 'interpreter', 'latex')
To reduce the values on the y axes, you could use ytickformat . However, you have such a small range of values that they would likely all come out the same. You could consider setting yticks() to only have perhaps 3 ticks (but they will all be pretty similar)
2 件のコメント
Walter Roberson
2022 年 7 月 25 日
According to your first plot, your range of y values is from about 0.1 minus 1e-14 to about 0.1 plus 1e-14. What tick marks were you hoping for?
その他の回答 (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!