<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[LFNoise2: Quadratically Interpolated Noise]]></title><description><![CDATA[<p>Hi,</p>
<p>I would like to know if there is already a way to generate quadratically interpolated noise similar to SC LFNoise2(<a href="http://doc.sccode.org/Classes/LFNoise2.html" rel="nofollow">http://doc.sccode.org/Classes/LFNoise2.html</a>)</p>
<p>Thank you.</p>
<p>Yiannis</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 18:23:45 GMT</lastBuildDate><atom:link href="http://forum.pdpatchrepo.info/topic/8046.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 21 Jan 2014 08:48:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Tue, 21 Jan 2014 08:48:08 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>I would like to know if there is already a way to generate quadratically interpolated noise similar to SC LFNoise2(<a href="http://doc.sccode.org/Classes/LFNoise2.html" rel="nofollow">http://doc.sccode.org/Classes/LFNoise2.html</a>)</p>
<p>Thank you.</p>
<p>Yiannis</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise</guid><dc:creator><![CDATA[yianK]]></dc:creator><pubDate>Tue, 21 Jan 2014 08:48:08 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Thu, 23 Jan 2014 18:06:33 GMT]]></title><description><![CDATA[<p>After searching further about the LFNoise2 ugen I found sc4pd: SuperCollider for PureData, a port of some SuperCollider UGens to PD objects (<a href="https://github.com/pd-l2ork/pd/tree/master/externals/tb/sc4pd" rel="nofollow">https://github.com/pd-l2ork/pd/tree/master/externals/tb/sc4pd</a>).</p>
<p>I tried to compile for windows (I managed to compile flext that was required) but I had no luck.</p>
<p>I wonder if anyone know if the compiled binaries of sc4pd are available for download or if anyone could have better luck on compile sc4pd.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/2</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/2</guid><dc:creator><![CDATA[yianK]]></dc:creator><pubDate>Thu, 23 Jan 2014 18:06:33 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Fri, 24 Jan 2014 13:14:10 GMT]]></title><description><![CDATA[<p>the only native pd objects that do 4 point interpolation are tabosc4~ and tabread4~ (and maybe vd~??)<br />
but there will be several ways to do what you want using pd objects.</p>
<p>here's a quick patch i made using a prewritten table of a few seconds length, and then reading it using tabread4~ driven by a phasor~. The speed of the phasor~ is like the 'freq' input of the SC UGen.<br />
Not sure how close this comes to the sound of the original, do you want to have a listen and see?</p>
<p>Also, I could probably use a much smaller table to store the initial noise signal. Too small though, and it gets noticeably cyclic at high frequencies.</p>
<p><a href="http://www.pdpatchrepo.info/hurleur/interpolateNoise.pd" rel="nofollow">http://www.pdpatchrepo.info/hurleur/interpolateNoise.pd</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/3</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/3</guid><dc:creator><![CDATA[mod]]></dc:creator><pubDate>Fri, 24 Jan 2014 13:14:10 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Mon, 27 Jan 2014 15:57:51 GMT]]></title><description><![CDATA[<p>Thanks! Actually it sounds very close to the SC's LFNoise2.</p>
<p>I will try to create a patch without the prewritten table and I will post it here for comments.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/4</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/4</guid><dc:creator><![CDATA[yianK]]></dc:creator><pubDate>Mon, 27 Jan 2014 15:57:51 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Tue, 28 Jan 2014 03:02:58 GMT]]></title><description><![CDATA[<p>good luck!</p>
<p>as the only native pd objects doing cubic interpolation are table reading ones, if you want to use them without a prewritten table, then you need to find a way to constantly rewrite to a smaller table.</p>
<p>The problem i found with that method, is that there's no way to sync the table write speed to the table reading speed. This results in clicks everytime the read and write positions overlap, when you get 4 completely new values for your cubic interpolation.</p>
<p>Perhaps the best way to write a patch without a prewritten table would be to put a proper cubic interpolation system into a patch either as basic arithmetic [*~ ], [+~ ] etc, or in [expr~] objects.</p>
<p>but the maths behind that give me a bit of a headache:</p>
<p><a href="http://www.paulinternet.nl/?page=bicubic" rel="nofollow">http://www.paulinternet.nl/?page=bicubic</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/5</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/5</guid><dc:creator><![CDATA[mod]]></dc:creator><pubDate>Tue, 28 Jan 2014 03:02:58 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Tue, 28 Jan 2014 08:37:42 GMT]]></title><description><![CDATA[<p>That's exactly what I am trying to do. To write a patch that will do the interpolation without the tabread4~</p>
<p>I'll let you know if I succeed!</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/6</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/6</guid><dc:creator><![CDATA[yianK]]></dc:creator><pubDate>Tue, 28 Jan 2014 08:37:42 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Tue, 28 Jan 2014 08:59:16 GMT]]></title><description><![CDATA[<p>Awesome! If you get stuck, just post your patch as an attachment here, and hopefully we can help you out with some ideas.</p>
<p>a native pd way to do 4-point would be awesome.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/7</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/7</guid><dc:creator><![CDATA[mod]]></dc:creator><pubDate>Tue, 28 Jan 2014 08:59:16 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Wed, 29 Jan 2014 10:15:15 GMT]]></title><description><![CDATA[<p>The problem I have is that I need to make the calculations and play the audio data in the sample rate of the pd but this can not be done using [metro]. As I read in a previous post [metro] minimum interval is 1 millisecond.</p>
<p>Is there an alternative way to achieve a fastest metro (at 1/44.1)?</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/8</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/8</guid><dc:creator><![CDATA[yianK]]></dc:creator><pubDate>Wed, 29 Jan 2014 10:15:15 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Thu, 30 Jan 2014 07:32:52 GMT]]></title><description><![CDATA[<p>You really should do everything as signal objects, if possible.</p>
<p>Using control objects for generating audio gives all sorts of trouble with timing and whatnot.</p>
<p>have you got the equations for the interpolation figured out? if so, i'll help you put them into signal objects.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/9</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/9</guid><dc:creator><![CDATA[mod]]></dc:creator><pubDate>Thu, 30 Jan 2014 07:32:52 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Thu, 30 Jan 2014 08:26:39 GMT]]></title><description><![CDATA[<p>i just had a mess around with some stuff, and came to the realization that 4 point interpolated noise is probably going to end up sounding quite similar to noise that is fed through a lowpass filter.</p>
<p>But plain white noise through lop~ won't give the sound you want, because it doesn't have that shaped stepping colour like the supercollider ugen would give.</p>
<p>So, what i did was first cut the noise source into steps, using a phasor to trigger samphold~ steps. Then lowpass the results of that to round the edges off.</p>
<p>The result is a patch which i think has all the character you'd hope for, and sounds at least as good, if not better than the table driven one i posted before.</p>
<p>i made a couple of little enhancements too, by adding a second offset samphold~ and a tanh~ saturator to give a bit more body to the sound.</p>
<p>it's not the 4-point algorithm you were originally looking for, but if sound is the main issue, then i think this is probably quite good.</p>
<p><a href="http://www.pdpatchrepo.info/hurleur/faux_point_noise.pd" rel="nofollow">http://www.pdpatchrepo.info/hurleur/faux_point_noise.pd</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/10</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/10</guid><dc:creator><![CDATA[mod]]></dc:creator><pubDate>Thu, 30 Jan 2014 08:26:39 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Thu, 06 Feb 2014 10:56:32 GMT]]></title><description><![CDATA[<p>Thanks, this is very close to the sound of the real interpolated noise.</p>
<p>In the meantime I manage to create a patch that generates Cosine Interpolated Noise (because the calculations are simpler and the results quite similar).</p>
<p>I have attached the patch for reviewing.</p>
<p>A last question is how can I get the the noise data in numbers and not in signal. I tried to use unpack instead of unpack~ but it didn't worked.</p>
<p><a href="http://www.pdpatchrepo.info/hurleur/LFNoiseCos.zip" rel="nofollow">http://www.pdpatchrepo.info/hurleur/LFNoiseCos.zip</a></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/11</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/11</guid><dc:creator><![CDATA[yianK]]></dc:creator><pubDate>Thu, 06 Feb 2014 10:56:32 GMT</pubDate></item><item><title><![CDATA[Reply to LFNoise2: Quadratically Interpolated Noise on Thu, 06 Feb 2014 19:09:30 GMT]]></title><description><![CDATA[<p>it's 4 am on a thursday night here, so i cant offer too much, but as you can see, there is a serious issue with dragging the pitch in that patch - lots of clicks.</p>
<p>it does sound different and much more edgy that the one i posted though. a glitch-free version would be super cool</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/12</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8046/lfnoise2-quadratically-interpolated-noise/12</guid><dc:creator><![CDATA[mod]]></dc:creator><pubDate>Thu, 06 Feb 2014 19:09:30 GMT</pubDate></item></channel></rss>