From 99032a42c793e253ed8f9e8d6553779f1aeeef4c Mon Sep 17 00:00:00 2001 From: Stephane Letz Date: Sun, 20 Jun 2021 20:22:55 +0200 Subject: [PATCH] Regenerated. --- docs/index.html | 2 +- docs/libs/noises/index.html | 5 +++-- docs/sitemap.xml.gz | Bin 215 -> 215 bytes noises.lib | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/index.html b/docs/index.html index fcf2741b..2afb444b 100644 --- a/docs/index.html +++ b/docs/index.html @@ -387,5 +387,5 @@ diff --git a/docs/libs/noises/index.html b/docs/libs/noises/index.html index 36cc1898..da240e8f 100644 --- a/docs/libs/noises/index.html +++ b/docs/libs/noises/index.html @@ -326,7 +326,7 @@

Alternatives

power spectral density, and can be changed to other real values.

Example

// pink_noise_compare.dsp - compare three pinking filters

-

process = pink_noises with { +

process = pink_noises with {
     f0 = 35; // Lower bandlimit in Hz
     bw3 = 0.7 * ma.SR/2.0 - f0; // Bandwidth in Hz, 3rd order case
     bw9 = 0.8 * ma.SR/2.0 - f0; // Bandwidth in Hz, 9th order case
@@ -336,7 +336,8 @@ 

Example

no.pink_filter, // original designed by invfreqz in Octave pink_tilt_3, // newer method using the same filter order pink_tilt_9; // newer method using a higher filter order -};

+}; +

Output of Example

faust2octave pink_noise_compare.dsp
 Octave:1> semilogx(20*log10(abs(fft(faustout,8192))(1:4096,:)));
diff --git a/docs/sitemap.xml.gz b/docs/sitemap.xml.gz
index ff310ae3c34bd059eb155bcd3d7473afa633ffa7..f52135bf89389f09835fb74df9fb20d444235555 100644
GIT binary patch
delta 14
Vcmcc4c%6|=zMF%?rhOvYMF1h^1e^c>

delta 14
Vcmcc4c%6|=zMF%ivt=UNMF1mQ1m*w$

diff --git a/noises.lib b/noises.lib
index 53d8c748..8c956d8c 100644
--- a/noises.lib
+++ b/noises.lib
@@ -145,7 +145,7 @@ Michon and/or Julius O. Smith III, and are released under the
 //
 // #### Example
 // // pink_noise_compare.dsp - compare three pinking filters
-//
+// ```
 // process = pink_noises with {
 //     f0 = 35; // Lower bandlimit in Hz
 //     bw3 = 0.7 * ma.SR/2.0 - f0; // Bandwidth in Hz, 3rd order case
@@ -157,6 +157,7 @@ Michon and/or Julius O. Smith III, and are released under the
 //       pink_tilt_3,    // newer method using the same filter order
 //       pink_tilt_9;    // newer method using a higher filter order
 // };
+// ```
 //
 // #### Output of Example
 // ```