Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะพล็อตสัญญาณใน Matplotlib ใน Python ได้อย่างไร


เพื่อให้ได้แผนภาพสัญญาณ เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • รับค่าเมล็ดแบบสุ่ม
  • เริ่มต้น dt สำหรับช่วงการสุ่มตัวอย่างและหาความถี่การสุ่มตัวอย่าง
  • สร้างจุดข้อมูลแบบสุ่มสำหรับ t .
  • ในการสร้างเสียงรบกวน รับ nse, r, cnse และ s ใช้ numpy.
  • สร้างร่างและชุดแผนย่อยโดยใช้ แผนย่อย() วิธีการ
  • ตั้งชื่อโครงเรื่อง
  • พล็อต t และ s จุดข้อมูล
  • ตั้งค่า x และ ป้าย
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import matplotlib.pyplot as plt
import numpy as np

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

np.random.seed(0)

dt = 0.01 # sampling interval
Fs = 1 / dt # sampling frequency
t = np.arange(0, 10, dt)

# generate noise:
nse = np.random.randn(len(t))
r = np.exp(-t / 0.05)
cnse = np.convolve(nse, r) * dt
cnse = cnse[:len(t)]
s = 0.1 * np.sin(4 * np.pi * t) + cnse
fig, axs = plt.subplots()
axs.set_title("Signal")
axs.plot(t, s, color='C0')
axs.set_xlabel("Time")
axs.set_ylabel("Amplitude")

plt.show()

ผลลัพธ์

จะพล็อตสัญญาณใน Matplotlib ใน Python ได้อย่างไร