Skip to content

Commit

Permalink
Typos in filter documentation, regenerated.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed May 29, 2021
1 parent 7ef5f0f commit 18c0cb7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -387,5 +387,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.1.2
Build Date UTC : 2021-05-29 12:19:40.757886+00:00
Build Date UTC : 2021-05-29 17:18:51.517956+00:00
-->
10 changes: 5 additions & 5 deletions docs/libs/filters/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ <h3 id="fiiir"><code>(fi.)iir</code></h3>
Such filter structures are termed "direct form".</p>
<p><code>iir</code> is a standard Faust function.</p>
<h4 id="usage_12">Usage</h4>
<pre><code> _ : iir(bcoeffs,acoeffs) : _
<pre><code>_ : iir(bcoeffs,acoeffs) : _
</code></pre>
<p>Where:</p>
<ul>
Expand Down Expand Up @@ -1336,7 +1336,7 @@ <h3 id="fitf1s_1"><code>(fi.)tf1s</code></h3>
specified by ANALOG transfer-function polynomials B(s)/A(s),
and a frequency-scaling parameter.</p>
<h4 id="usage_40">Usage</h4>
<pre><code>tf1s(b1,b0,a0,w1)
<pre><code>_ : tf1s(b1,b0,a0,w1) : _
</code></pre>
<p>Where:</p>
<pre><code> b1 s + b0
Expand Down Expand Up @@ -1946,7 +1946,7 @@ <h3 id="fiavg_tau">(fi.)avg_tau</h3>
response is slower to reach the final value but has less ripples in
non-steady signals.</p>
<h4 id="usage_68">Usage</h4>
<pre><code>_ avg_tau(period) : _
<pre><code>_ : avg_tau(period) : _
</code></pre>
<p>Where:</p>
<ul>
Expand All @@ -1963,7 +1963,7 @@ <h3 id="fiavg_t60">(fi.)avg_t60</h3>
This response is particularly useful when the system is required to
reach the final value after about <code>period</code> seconds.</p>
<h4 id="usage_69">Usage</h4>
<pre><code>_ avg_t60(period) : _
<pre><code>_ : avg_t60(period) : _
</code></pre>
<p>Where:</p>
<ul>
Expand All @@ -1981,7 +1981,7 @@ <h3 id="fiavg_t19">(fi.)avg_t19</h3>
the final value after <code>period</code> seconds and shows about the same
oscillations for non-steady signals.</p>
<h4 id="usage_70">Usage</h4>
<pre><code>_ avg_t19(period) : _
<pre><code>_ : avg_t19(period) : _
</code></pre>
<p>Where:</p>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.
10 changes: 5 additions & 5 deletions filters.lib
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ allpass_fcomb1a(maxdel,N,aN) = (+ <: de.fdelay1a(maxdel,N-1),*(aN)) ~ *(-aN) : m
// #### Usage
//
// ```
// _ : iir(bcoeffs,acoeffs) : _
// _ : iir(bcoeffs,acoeffs) : _
// ```
//
// Where:
Expand Down Expand Up @@ -1359,7 +1359,7 @@ tf3slf(b3,b2,b1,b0,a3,a2,a1,a0) = tf3(b0d,b1d,b2d,b3d,a1d,a2d,a3d) with {
// #### Usage
//
// ```
// tf1s(b1,b0,a0,w1)
// _ : tf1s(b1,b0,a0,w1) : _
// ```
// Where:
//
Expand Down Expand Up @@ -2748,7 +2748,7 @@ avg_rect(period, x) = x : ba.slidingMean(rint(period * ma.SR));
// #### Usage
//
// ```
// _ avg_tau(period) : _
// _ : avg_tau(period) : _
// ```
//
// Where:
Expand Down Expand Up @@ -2776,7 +2776,7 @@ avg_tau(period, x) = fi.lptau(period, x);
// #### Usage
//
// ```
// _ avg_t60(period) : _
// _ : avg_t60(period) : _
// ```
//
// Where:
Expand Down Expand Up @@ -2805,7 +2805,7 @@ avg_t60(period, x) = fi.lpt60(period, x);
// #### Usage
//
// ```
// _ avg_t19(period) : _
// _ : avg_t19(period) : _
// ```
//
// Where:
Expand Down

0 comments on commit 18c0cb7

Please sign in to comment.