Skip to content

Commit

Permalink
master: filters.lib: clarifying comments regarding lattice allpass fi…
Browse files Browse the repository at this point in the history
…lters
  • Loading branch information
josmithiii committed Jul 20, 2024
1 parent 63786a0 commit 9f0db3c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions filters.lib
Original file line number Diff line number Diff line change
Expand Up @@ -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]>";
Expand Down Expand Up @@ -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
Expand Down

1 comment on commit 9f0db3c

@sletz
Copy link
Member

@sletz sletz commented on 9f0db3c Jul 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, regenerated 5fec9f0

Please sign in to comment.