various signal processing code
Go to file
Connor Olding 7cadb9426e update 51 2021-05-17 04:06:15 -07:00
lib update 51 2021-05-17 04:06:15 -07:00
.gitignore update 1 2015-10-18 23:06:39 -07:00
README.md update 40 2018-02-21 04:04:24 -08:00
autoupdate update 35 2017-09-25 09:03:47 -07:00

README.md

random dsp code

it's a bunch of half-baked python code that's kinda handy.

don't expect commits, docs, or comments to be any verbose.

feel free to modify and adapt the autoupdate shell script for your own repos like this!

the stuff

  • a basic BS.1770-3 normalization implementation — bs.py

  • biquad butterworth/chebyshev filters (via DSPFilters)nsf.py

  • modified bilinear transformation: s-plane to z-plane — planes.py

  • various functions for biquad filters — bq.py

  • some functions for state-variable filters (via Raph Levien)svf.py

  • sine sweeps, and the Optimized Aoshima's Time-Stretched Pulse (via here)sweeps.py

  • basic cepstrum utilities like minimum-phase reconstruction (via Julius Smith)cepstrum.py

  • utilities for magnitude plotting, including tilting and smoothing — fft.py smoothfft.py mag.py

  • a couple hard-coded polyphase halfband IIRs for nonlinear-phase resampling or approximating hilbert transforms (read more: Olli Niemitalo) — piir.py

  • a dozen windowing functions and utility functions for constructing them — windowing.py

  • ad-hoc experiments with psychoacoustic equalization ("neon pink" and other crap before i realized "grey noise" was the term i was looking for) — data.py

  • miscellaneous matplotlib stuff — plot.py

  • miscellaneous utility functions — util.py wav.py

all wrapped up in a inconveniently named "lib" module!

dependencies

python 3.5+

numpy scipy sympy matplotlib ewave

usually run in an ipython environment.