gpt4 book ai didi

python-3.x - 我怎样才能在我的情节标题中正确地格式化这个方程式? ( python 3)

转载 作者:行者123 更新时间:2023-12-02 00:45:24 26 4
gpt4 key购买 nike

我正在尝试添加一个具有正确语法的标题来打印高斯分布的公式,但没有发现我的错误。有人可以帮我发现它吗?我的尝试在下面和produces this result而公式应该看起来像 f(x) = right hand side of this .我要求使用 python3,尽管我认为它与 LaTeX 相同。

title = "Gaussian Distribution: f(x) = $\\frac{1/\sigma (2\pi)^{frac{1/2}}} \exp( \\frac{(x-\mu)^2 / 2\sigma^2} )"
plt.title(title)

最佳答案

MathText 表达式必须用 $ 符号括起来。
它们必须是有效的 latex 命令,即开头的 { 必须有结尾的 }
使用原始字符串无需转义。

title = r"f(x) =  $\frac{1}{\sigma \sqrt{2\pi}}  e^{\frac{(x-\mu)^2 }{ 2\sigma^2}}$"

enter image description here

关于python-3.x - 我怎样才能在我的情节标题中正确地格式化这个方程式? ( python 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44096734/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com