我是靠谱客的博主 优雅香水,最近开发中收集的这篇文章主要介绍matplotlib编写数学表达式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

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

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

 

 

#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{xsin(pisqrt{x^2+y^2})}{x+y}dxdy = -frac{3}{4} $',
fontsize=20, ha='center')
plt.show()

 

 

最后

以上就是优雅香水为你收集整理的matplotlib编写数学表达式的全部内容,希望文章能够帮你解决matplotlib编写数学表达式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部