Home

Awesome

DSPPlot

Matlab-style plots in python

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