sqrt in figure label

322 次查看(过去 30 天)
Baba
Baba 2011-11-17
评论: Daan 2023-11-28
how would i place a square root sign inside a figure axis label? someting like square root of X

回答(1 个)

Amith Kamath
Amith Kamath 2011-11-17
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 个评论
Amith Kamath
Amith Kamath 2011-11-18
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 2023-11-28
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')

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Labels and Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by