update 23
This commit is contained in:
parent
8f7e2d1e2d
commit
55835b98de
3 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ don't expect commits, docs, or comments to be any verbose.
|
||||||
— [bs.py](/lib/bs.py)
|
— [bs.py](/lib/bs.py)
|
||||||
|
|
||||||
* biquad butterworth/chebyshev filters [(via DSPFilters)][dspf]
|
* biquad butterworth/chebyshev filters [(via DSPFilters)][dspf]
|
||||||
— [butterworth.py](/lib/butterworth.py)
|
— [nsf.py](/lib/nsf.py)
|
||||||
|
|
||||||
* bilinear transformation: s-plane to z-plane
|
* bilinear transformation: s-plane to z-plane
|
||||||
— [planes.py](/lib/planes.py)
|
— [planes.py](/lib/planes.py)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env zsh
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
rm -r lib
|
[ -d lib ] && rm -r lib
|
||||||
dropbox_uploader -q download py/lib >/dev/null
|
dropbox_uploader -q download py/lib >/dev/null
|
||||||
|
|
||||||
if [ ! -d .git ]; then
|
if [ ! -d .git ]; then
|
||||||
|
|
|
@ -3,7 +3,7 @@ from .bq import *
|
||||||
|
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
# as calculated by LPB in butterworth.py
|
# as calculated by LPB in nsf.py
|
||||||
_bq2a = 1/.76536686473017945
|
_bq2a = 1/.76536686473017945
|
||||||
_bq2b = 1/1.8477590650225735
|
_bq2b = 1/1.8477590650225735
|
||||||
_bq2a_bw = isqrt2/_bq2a
|
_bq2a_bw = isqrt2/_bq2a
|
||||||
|
|
Loading…
Reference in a new issue