-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master: filters.lib: clarifying comments regarding lattice allpass fi…
…lters
- Loading branch information
1 parent
63786a0
commit 9f0db3c
Showing
1 changed file
with
9 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 |
---|---|---|
|
@@ -783,18 +783,23 @@ with { | |
}; | ||
|
||
//-----------------------`(fi.)allpassnt`-------------------------- | ||
// Two-multiply lattice allpass (nested order-1 direct-form-ii allpasses). | ||
// Two-multiply lattice allpass (nested order-1 direct-form-ii allpasses), with taps. | ||
// | ||
// #### Usage | ||
// | ||
// ``` | ||
// _ : allpassnt(n,sv) : _ | ||
// _ : allpassnt(n,sv) : si.bus(n+1) | ||
// ``` | ||
// | ||
// Where: | ||
// | ||
// * `n`: the order of the filter | ||
// * `sv`: the reflection coefficients (-1 1) | ||
// | ||
// The first output is the n-th order allpass output, | ||
// while the remaining outputs are taps taken from the | ||
// input of each delay element from the input to the output. | ||
// See (fi.)allpassn for the single-output case. | ||
//------------------------------------------------------------ | ||
declare allpassnt author "Julius O. Smith III"; | ||
declare allpassnt copyright "Copyright (C) 2003-2019 by Julius O. Smith III <[email protected]>"; | ||
|
@@ -1136,6 +1141,8 @@ with { | |
// * `n`: the order of the filter | ||
// * `sv`: the reflection coefficients (-1 1) | ||
// | ||
// Equivalent to fi.allpassnt(n,sv) : _, par(i,n,!); | ||
// | ||
// #### References | ||
// * J. O. Smith and R. Michon, "Nonlinear Allpass Ladder Filters in FAUST", in | ||
// Proceedings of the 14th International Conference on Digital Audio Effects | ||
|
9f0db3c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, regenerated 5fec9f0