📜  Python中的 Matplotlib.axes.Axes.specgram()

📅  最后修改于: 2022-05-13 01:55:20.245000             🧑  作者: Mango

Python中的 Matplotlib.axes.Axes.specgram()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。

matplotlib.axes.Axes.specgram()函数

matplotlib 库的 axes 模块中的Axes.specgram()函数用于绘制频谱图。

下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.specgram()函数:

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
dt = 0.005
t = np.arange(0.0, 20.0, dt)
x = np.sin(np.pi * t) + 1.5 * np.cos(np.pi * t)
  
fig, ax1 = plt.subplots()
ax1.specgram(x, Fs = 1)
ax1.set_title('matplotlib.axes.Axes.specgram() Example')
  
plt.show()

输出:

示例 2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
np.random.seed(9360801)
  
dt = 0.0005
t = np.arange(0.0, 20.0, dt)
s1 = np.sin(4 * np.pi * 100 * t)
s2 = 1.5 * np.sin(1.5 * np.pi * 400 * t)
  
s2[t <= 10] = s2[12 <= t] = 0
  
nse = 0.2 * np.random.random(size = len(t))
  
x = s1 + s2 + nse  
NFFT = 512 
Fs = int(1.0 / dt)  
  
fig, ax1 = plt.subplots()
ax1.specgram(x, Fs = Fs, cmap = plt.cm.bone)
ax1.set_title('matplotlib.axes.Axes.specgram() Example')
  
plt.show()

输出: