-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change svf_morph/svf_notch_morph authors.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2831,7 +2831,7 @@ svf = environment { | |
// #### Reference | ||
// <https://github.com/mtytel/vital/blob/636ca0ef517a4db087a6a08a6a8a5e704e21f836/src/synthesis/filters/digital_svf.cpp#L292-L295> | ||
//----------------------------------------------------- | ||
declare svf_morph author "David Braun"; | ||
declare svf_morph author "David Braun and Clarence W. Rowley"; | ||
declare svf_morph copyright "Copyright (C) 2024 David Braun <[email protected]>"; | ||
declare svf_morph license "MIT-style STK-4.3 license"; | ||
svf_morph(f, q, _b, x) = svf.lp(f,q,x)*w_LP + svf.bp(f,q,x)*w_BP + svf.hp(f,q,x)*w_HP | ||
|
@@ -2874,7 +2874,7 @@ with { | |
// #### Reference | ||
// <https://github.com/mtytel/vital/blob/636ca0ef517a4db087a6a08a6a8a5e704e21f836/src/synthesis/filters/digital_svf.cpp#L256C36-L263> | ||
//----------------------------------------------------------- | ||
declare svf_notch_morph author "David Braun"; | ||
declare svf_notch_morph author "David Braun and Clarence W. Rowley"; | ||
declare svf_notch_morph copyright "Copyright (C) 2024 David Braun <[email protected]>"; | ||
declare svf_notch_morph license "MIT-style STK-4.3 license"; | ||
svf_notch_morph(f, q, _b, x) = svf.lp(f,q,x)*w_LP + svf.hp(f,q,x)*w_HP | ||
|