matplotlib编写数学表达式

使用matplitlib 编写数学表达式
https://matplotlib.org/stable/tutorials/text/mathtext.html

导师的一个小任务要用到matplotlib编写数学公式,参考https://matplotlib.org/stable/tutorials/text/mathtext.html

我稍微研究了一下,如果读者对于其他图有啥困惑欢迎私信交流

matplotlib编写数学表达式

matplotlib编写数学表达式 

 

#auther cy
import matplotlib.pyplot as plt
plt.figure(figsize=(10,10), dpi=80)
plt.figure(1)
plt.subplot(2, 2, 1)
plt.text(0.5, 0.5,r'$y_s(t) = x(t)*\delta_r(t)$',
         fontsize=18, ha='center')
plt.subplot(2, 2, 2)
plt.text(0.5, 0.5,r'$\log_{a}\sqrt[2]{M}=\frac{1}{n}\log_{a}M$',
         fontsize=18, ha='center')
plt.subplot(4, 1, 3)
plt.text(0.1, 0.8,'$f(x) = f(x_0) + f^{\'}(x_0)(x-x_0)+\\frac{f^{\'\'''}(x_0)}{2!}(x-x_0)^2 + ... + \\frac{f^{(n)}(x_0)}{n!}(x-x_0) + o((x-x_0)^n)$',
         fontsize=15)
plt.subplot(4, 1, 4)
plt.text(0.5, 0.5,r'$\iint_{D}\frac{x\sin(\pi\sqrt{x^2+y^2})}{x+y}dxdy = -\frac{3}{4} $',
         fontsize=20, ha='center')

plt.show()

matplotlib编写数学表达式 

 

上一篇:数字图像处理笔记(一)Matlab实现直方图均衡化


下一篇:Python可视化matplotlib多子图可视化(Multiple Subplots):plt.axes()、plt.subplot()、plt.subplots()、