the superscript in the textbox in the figure?
Mostrar comentarios más antiguos
How can I put (degree) the degree of temperature Celsius in the text box inside the figure? ex: C to the power (Celsius)
1 comentario
Fei Wang
el 25 de Jun. de 2017
1. Right click, then Select latex mode 2. input $^{\circ}$C 3. done
Respuesta aceptada
Más respuestas (5)
Star Strider
el 24 de Mzo. de 2014
Editada: Star Strider
el 24 de Mzo. de 2014
It’s very well hidden in the documentation. In the online documentation it’s under String. That reveals:
\circ º
The rest of the special TeX characters are there as well.
Salaheddin Hosseinzadeh
el 24 de Mzo. de 2014
Editada: Salaheddin Hosseinzadeh
el 24 de Mzo. de 2014
As I remember MATLAB understand a little bit of Latex! lol
If you've ever worked with Latex which is just like writing in a linear form try this
legend('C^{Celcious}') or title or xlable or ...
or
title('C^o')
if you want to have Celsius sign
Let me know about the results plz.
Good Luck!
2 comentarios
Mary Jon
el 24 de Mzo. de 2014
Salaheddin Hosseinzadeh
el 26 de Mzo. de 2014
You can apply the same format to text, legend, disp, display, labelx labely title and similar functions that accept strings generally
Salaheddin Hosseinzadeh
el 24 de Mzo. de 2014
If you have a variable then you can concatenate the string simply
x=30;
title([num2str(x),'^c']) or legend or text or xlable or ...
Be lazy and go with the easy one! lol
Good Luck!
1 comentario
Mary Jon
el 24 de Mzo. de 2014
Salaheddin Hosseinzadeh
el 26 de Mzo. de 2014
I don't know what version of MATLAB you are using! But the following code resulted as such on my PC with 2012a and it's really easy to use this notation! You can see the image as well!
figure
text(0.1,0.1,'Hello^{World}')
text(.3,.3,'trying_{subscript}')
text(.6,.6,'trying_{subscript}^{power}')

3 comentarios
Salaheddin Hosseinzadeh
el 26 de Mzo. de 2014
I hope the pics would be clear, it ws the first time I posted pics! I thought one can click to see the full size image!
Mary Jon
el 26 de Mzo. de 2014
Image Analyst
el 26 de Mzo. de 2014
You CAN click on the image to bring it up full size. At least using Firefox you can.
Salaheddin Hosseinzadeh
el 26 de Mzo. de 2014
Another instance when you have numbers to deal with!
>> x=30
x =
30
>> figure
>> text(.1,.1,[num2str(x),'^c'])
>>

Categorías
Más información sobre Graphics Object Properties en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!