Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 655 Bytes

README.md

File metadata and controls

41 lines (31 loc) · 655 Bytes

DSPPlot

Matlab-style plots in python

  • Impulse response
  • Frequency response
  • Phase response
  • wvtool
  • Highly configurable

Installation

Windows: Install latest prebuilt numpy, scipy and matplotlib before installing dspplot

python setup.py install

Usage

Plotting Window functions

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'
    )

License

MIT license