-
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.
remove new tf1s from filters.lib because it already existed
- Loading branch information
Julius Smith
committed
May 29, 2021
1 parent
18c0cb7
commit 5cb2348
Showing
1 changed file
with
0 additions
and
14 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 |
---|---|---|
|
@@ -1293,20 +1293,6 @@ with { | |
a2d = (a0 - a1*c + csq)/d; | ||
}; | ||
|
||
//-----------------------------`(fi.)tf1s`------------------------------- | ||
// First-order special case of tf2s above | ||
// | ||
// #### Usage | ||
// | ||
// ``` | ||
// _ : tf1s(b1,b0,a0) : _ | ||
// ``` | ||
//---------------------------------------------- | ||
declare tf1s author "Julius O. Smith III"; | ||
declare tf1s copyright "Copyright (C) 2003-2019 by Julius O. Smith III <[email protected]>"; | ||
declare tf1s license "MIT-style STK-4.3 license"; | ||
tf1s(b1,b0,a0,w1) = fi.tf2s(b1,b0,0,a0,0,w1); // FIXME: Faust compiler does not fully optimize - does C++? | ||
|
||
//-----------------------------`(fi.)tf1snp`------------------------------- | ||
// First-order special case of tf2snp above | ||
// | ||
|