2020-02-16 11:00:02 +00:00

224 lines
5.7 KiB
Python

"""This file contains code used in "Think DSP",
by Allen B. Downey, available from greenteapress.com
Copyright 2015 Allen B. Downey
License: GNU GPLv3 http://www.gnu.org/licenses/gpl.html
"""
from __future__ import print_function, division
import math
import numpy as np
import thinkdsp
import thinkplot
import matplotlib.pyplot as pyplot
import warnings
warnings.filterwarnings('ignore')
PI2 = math.pi * 2
def linear_chirp_evaluate(ts, low=440, high=880, amp=1.0):
"""Computes the waveform of a linear chirp and prints intermediate values.
low: starting frequency
high: ending frequency
amp: amplitude
"""
print('ts', ts)
freqs = np.linspace(low, high, len(ts)-1)
print('freqs', freqs)
dts = np.diff(ts)
print('dts', dts)
dphis = np.insert(PI2 * freqs * dts, 0, 0)
print('dphis', dphis)
phases = np.cumsum(dphis)
print('phases', phases)
ys = amp * np.cos(phases)
print('ys', ys)
return ys
def discontinuity(num_periods=30, hamming=False):
"""Plots the spectrum of a sinusoid with/without windowing.
num_periods: how many periods to compute
hamming: boolean whether to apply Hamming window
"""
signal = thinkdsp.SinSignal(freq=440)
duration = signal.period * num_periods
wave = signal.make_wave(duration)
if hamming:
wave.hamming()
print(len(wave.ys), wave.ys[0], wave.ys[-1])
spectrum = wave.make_spectrum()
spectrum.plot(high=880)
def three_spectrums():
"""Makes a plot showing three spectrums for a sinusoid.
"""
thinkplot.preplot(rows=1, cols=3)
pyplot.subplots_adjust(wspace=0.3, hspace=0.4,
right=0.95, left=0.1,
top=0.95, bottom=0.1)
xticks = range(0, 900, 200)
thinkplot.subplot(1)
thinkplot.config(xticks=xticks)
discontinuity(num_periods=30, hamming=False)
thinkplot.subplot(2)
thinkplot.config(xticks=xticks, xlabel='Frequency (Hz)')
discontinuity(num_periods=30.25, hamming=False)
thinkplot.subplot(3)
thinkplot.config(xticks=xticks)
discontinuity(num_periods=30.25, hamming=True)
# thinkplot.save(root='windowing1')
thinkplot.show()
def window_plot():
"""Makes a plot showing a sinusoid, hamming window, and their product.
"""
signal = thinkdsp.SinSignal(freq=440)
duration = signal.period * 10.25
wave1 = signal.make_wave(duration)
wave2 = signal.make_wave(duration)
ys = np.hamming(len(wave1.ys))
ts = wave1.ts
window = thinkdsp.Wave(ys, ts, wave1.framerate)
wave2.hamming()
thinkplot.preplot(rows=3, cols=1)
pyplot.subplots_adjust(wspace=0.3, hspace=0.3,
right=0.95, left=0.1,
top=0.95, bottom=0.05)
thinkplot.subplot(1)
wave1.plot()
thinkplot.config(axis=[0, duration, -1.07, 1.07])
thinkplot.subplot(2)
window.plot()
thinkplot.config(axis=[0, duration, -1.07, 1.07])
thinkplot.subplot(3)
wave2.plot()
thinkplot.config(axis=[0, duration, -1.07, 1.07],
xlabel='Time (s)')
# thinkplot.save(root='windowing2')
thinkplot.show()
def chirp_spectrum():
"""Plots the spectrum of a one-second one-octave linear chirp.
"""
signal = thinkdsp.Chirp(start=220, end=440)
wave = signal.make_wave(duration=1)
thinkplot.preplot(3, cols=3)
duration = 0.01
wave.segment(0, duration).plot(xfactor=1000)
thinkplot.config(ylim=[-1.05, 1.05])
thinkplot.subplot(2)
wave.segment(0.5, duration).plot(xfactor=1000)
thinkplot.config(yticklabels='invisible',
xlabel='Time (ms)')
thinkplot.subplot(3)
wave.segment(0.9, duration).plot(xfactor=1000)
thinkplot.config(yticklabels='invisible')
# thinkplot.save('chirp3')
thinkplot.show()
spectrum = wave.make_spectrum()
spectrum.plot(high=700)
# thinkplot.save('chirp1',
# xlabel='Frequency (Hz)',
# ylabel='Amplitude')
thinkplot.show()
def chirp_spectrogram():
"""Makes a spectrogram of a one-second one-octave linear chirp.
"""
signal = thinkdsp.Chirp(start=220, end=440)
wave = signal.make_wave(duration=1, framerate=11025)
spectrogram = wave.make_spectrogram(seg_length=512)
print('time res', spectrogram.time_res)
print('freq res', spectrogram.freq_res)
print('product', spectrogram.time_res * spectrogram.freq_res)
spectrogram.plot(high=700)
# thinkplot.save('chirp2',
# xlabel='Time (s)',
# ylabel='Frequency (Hz)')
thinkplot.show()
def overlapping_windows():
"""Makes a figure showing overlapping hamming windows.
"""
n = 256
window = np.hamming(n)
thinkplot.preplot(num=5)
start = 0
for i in range(5):
xs = np.arange(start, start+n)
thinkplot.plot(xs, window)
start += n/2
# thinkplot.save(root='windowing3',
# xlabel='Index',
# axis=[0, 800, 0, 1.05])
thinkplot.show()
def invert_spectrogram():
"""Tests Spectrogram.make_wave.
"""
signal = thinkdsp.Chirp(start=220, end=440)
wave = signal.make_wave(duration=1, framerate=11025)
spectrogram = wave.make_spectrogram(seg_length=512)
wave2 = spectrogram.make_wave()
for i, (y1, y2) in enumerate(zip(wave.ys, wave2.ys)):
if abs(y1 - y2) > 1e-14:
print(i, y1, y2)
def main():
chirp_spectrum()
chirp_spectrogram()
overlapping_windows()
window_plot()
three_spectrums()
if __name__ == '__main__':
main()