sqrt in figure label

465 visualizaciones (últimos 30 días)
Baba
Baba el 17 de Nov. de 2011
Comentada: Daan el 28 de Nov. de 2023
how would i place a square root sign inside a figure axis label? someting like square root of X

Respuestas (1)

Amith Kamath
Amith Kamath el 17 de Nov. de 2011
you would have to change the interpreter to latex, and then type in {\surd} in the xlabel (or any text) box. All the symbols are latex compatible, which is great, and you can make plots like this:
  3 comentarios
Amith Kamath
Amith Kamath el 18 de Nov. de 2011
oops! I did a Rick Perry there! :) The latex symbol for square root is \surd and not \sqrt. This should definitely work. Sorry for the slip-up! Try this:
plot([1:1:10])
title('{\itAe}^{-\alpha\itt}sin\beta{\itt} {\surd} \alpha<<\beta')
xlabel('Time \musec.')
ylabel('Amplitude')
Daan
Daan el 28 de Nov. de 2023
For any future person reading this: the Latex interpreter needs the string to be in 'Math'-text.
i.e. should be enclosed in $[text]$
Solutions:
xlabel('$\sqrt{x}$ [-]',Interpreter='latex')
or:
xlabel('$\surd$ x [-]',Interpreter='latex')

Iniciar sesión para comentar.

Categorías

Más información sobre Labels and Annotations en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by