Matlab-style plots in python
- Impulse response
- Frequency response
- Phase response
- wvtool
- Highly configurable
Windows: Install latest prebuilt numpy, scipy and matplotlib before installing dspplot
python setup.py install
import dspplot
data = [] # create the data
dspplot.plot(
data,
freqresp=True,
padwidth=1024,
log_freq=False,
horizontal=False,
normalized_freq=True,
title='Hamming window',
# remove next line to show the plot interactively
file='../svg/window_hamming.svg'
)
MIT license