#for python 3.6


import numpy as np

import matplotlib.pyplot as plt
import urllib.request


x= np.linspace(0,10,1000)  #自变量
y= np.sin(x) + 1            #因变量y
z=np.cos(x**2)+1            #因变量z


plt.figure(figsize = (8,4)) #图像大小
plt.plot(x,y,label = '$sin(x) + 1',color = 'red' , linewidth = 2) 
# 用xy作图,设置x轴的标签 ,设置线条的 颜色和粗细
plt.plot(x, z, 'b--', label = '$\cos x^2+1')
# 用xz作图,设置线条的类型


plt.xlabel('Time(s) ') # x标签
plt.ylabel('Volt') # y 标签
plt.title('A Simple Example')  #标题


plt.ylim(0, 2.2) #图像大小
plt.legend() # 显示图例

plt.show() # 画图


生成波动图





相关文章:

  • 2021-06-06
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2022-01-12
  • 2021-07-28
  • 2021-09-09
  • 2021-08-07
猜你喜欢
  • 2021-12-13
  • 2022-12-23
  • 2021-11-06
  • 2021-10-20
  • 2021-07-26
  • 2021-10-15
  • 2021-10-03
相关资源
相似解决方案