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 @@
// 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
-};
+};
+
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 ff310ae3..f52135bf 100644
Binary files a/docs/sitemap.xml.gz and b/docs/sitemap.xml.gz differ
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
// ```