sjrdc / fir

Additional tools for FIR filter designs in Python/Numpy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fir - additions to the Scipy signals toolbox.

This is a package to compliment the the SciPy signals toolbox. Some functions are redundant (the remez function) from the SciPy package. Indeed, the remez function is a direct copy. However, some are new.

Installation

This package does require some external packages, particularly the latest version of boost (v1.63). At the moment this is installed by source. Information can be found here.

To use, you will first need to build the program. Assuming you are on a Linux machine

cd fir
mkdir obj # build objects will be placed here
make
make install

The install step is determined where you place the install path. The install location is established by

INSTALL_PATH = /location/of/python/path

Usage

Each of the functions should be documented, but the usage is similar to the Scipy function calls.

The documentation can be found by launching python in the command line and then

>>>import fir
>>>help(fir)

to see that documentation.

About

Additional tools for FIR filter designs in Python/Numpy


Languages

Language:C 54.3%Language:Python 23.9%Language:C++ 18.0%Language:Makefile 3.9%