Is there a way to get a 'less than or equal to' symbol in to a text document?

138 vues (au cours des 30 derniers jours)
I'm unable to find the correct code to get a 'less than or equal to' symbol in to a text document?

Réponse acceptée

ANIL LAMICHHANE
ANIL LAMICHHANE le 6 Nov 2020
I think it should be
text(.4,.4,'$3 \leq 4$','interpreter','latex')
Source:
  4 commentaires
madhan ravi
madhan ravi le 6 Nov 2020
Thank you sir Walter

Connectez-vous pour commenter.

Plus de réponses (2)

Walter Roberson
Walter Roberson le 2 Oct 2017
text(.4,.4,'$3 \le 4$','interpreter','latex')

Bruno Luong
Bruno Luong le 6 Nov 2020
Modifié(e) : Bruno Luong le 6 Nov 2020
To keep standard font
text(.2,.2,['3 ' char(8804) ' 4'])
text(.3,.3,['3≤4 (default)']) % if your editor is configured to support unicode
text(.4,.4,'$3 \leq 4$ latex','interpreter','latex')
text(.5,.5,'3 \leq 4 tex','interpreter','tex')

Community Treasure Hunt

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

Start Hunting!

Translated by