
derivative dot symbol in the legend of 2d plot
2 views (last 30 days)
Show older comments
Abhijit Sardar
on 26 Dec 2021
Commented: Abhijit Sardar
on 26 Dec 2021
I want to include derivative of strain in the legend i.e. epsilon with a single dot on it's head how do i do so in the legend or if i want to put it in a text box in a 2 d plot
0 Comments
Accepted Answer
Simon Chan
on 26 Dec 2021
Somthing like the following?
x = 1:10;
y = 1:10;
plot(x,y);
legend('$\dot{\epsilon}$','Interpreter','latex','FontSize',16)
text(3,5,'$\dot{\epsilon}$','Interpreter','latex','FontSize',16)

More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!