欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib绘制图例标签中带有公式的图

程序员文章站 2022-03-08 14:37:39
...

一 代码

  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3. x = np.linspace(0,2*np.pi,500)
  4. y = np.sin(x)
  5. z = np.cos(x*x)
  6. plt.figure(figsize=(8,4))
  7. #标签前后加$将使用内嵌的LaTex引擎将其显示为公式
  8. plt.plot(x,y,label='$sin(x)$',color='red',linewidth=2)#红色,2个像素宽
  9. plt.plot(x,z,'b--',label='$cos(x^2)$')#蓝色,虚线
  10. plt.xlabel('Time(s)')
  11. plt.ylabel('Volt')
  12. plt.title('Sin and Cos figure using pyplot')
  13. plt.ylim(-1.2,1.2)
  14. plt.legend()#显示图示
  15. plt.show()
二 运行结果
matplotlib绘制图例标签中带有公式的图
            
    
    博客分类: python matplotlib 
 
  • matplotlib绘制图例标签中带有公式的图
            
    
    博客分类: python matplotlib 
  • 大小: 45.1 KB
相关标签: matplotlib