From 49194905f2b525c40bed492812355e4367cefb68 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Tue, 24 Apr 2018 04:04:23 -0700 Subject: [PATCH] update 46 --- lib/svf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svf.py b/lib/svf.py index 8a1e865..df047db 100644 --- a/lib/svf.py +++ b/lib/svf.py @@ -5,7 +5,7 @@ import numpy as np def svf_core(w0, Q, m, shelfA=1, gain=1): # via: - # http://nbviewer.ipython.org/urls/music-synthesizer-for-android.googlecode.com/git/lab/Second%20order%20sections%20in%20matrix%20form.ipynb + # https://github.com/google/music-synthesizer-for-android/blob/master/lab/Second%20order%20sections%20in%20matrix%20form.ipynb # TODO: implement constant gain parameter g = unwarp(w0)*shelfA a1 = 1/(1 + g*(g + 1/Q))