derivative dot symbol in the legend of 2d plot

38 Ansichten (letzte 30 Tage)
Abhijit Sardar
Abhijit Sardar am 26 Dez. 2021
Kommentiert: Abhijit Sardar am 26 Dez. 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

Akzeptierte Antwort

Simon Chan
Simon Chan am 26 Dez. 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)
  3 Kommentare
Walter Roberson
Walter Roberson am 26 Dez. 2021
When you use the property inspector, put
$\dot{\epsilon}$
in the String property.
You might also need to change the Interpreter property to 'latex'
Abhijit Sardar
Abhijit Sardar am 26 Dez. 2021
yes i figured that out. Thanks a lot

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by