From 99032a42c793e253ed8f9e8d6553779f1aeeef4c Mon Sep 17 00:00:00 2001
From: Stephane Letz Keyboard Shortcuts
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.
// 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 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
// ```