<?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[How to make sound with gradually increasing frequency]]></title><description><![CDATA[<p>Hi, I want to make the sound with gradually increasing frequency.</p>
<p>For example</p>
<p>after 0s 100 Hz<br />
after 2s 100Hz + 100Hz = 200Hz<br />
after 4s 100Hz + 200Hz = 300Hz<br />
after 6s 200Hz + 300Hz = 500Hz<br />
after 8s 300Hz + 500Hz = 800Hz<br />
....<br />
and so on<br />
...</p>
<p><img src="/uploads/files/1635917209488-pure-data-patch.png" alt="pure data patch.png" class="img-responsive img-markdown" /><br />
I tried to write code but simply didn't work<br />
I would be very grateful if you could help me with writing code</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 15:04:47 GMT</lastBuildDate><atom:link href="http://forum.pdpatchrepo.info/topic/13694.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 03 Nov 2021 05:26:56 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to make sound with gradually increasing frequency on Wed, 03 Nov 2021 05:26:56 GMT]]></title><description><![CDATA[<p>Hi, I want to make the sound with gradually increasing frequency.</p>
<p>For example</p>
<p>after 0s 100 Hz<br />
after 2s 100Hz + 100Hz = 200Hz<br />
after 4s 100Hz + 200Hz = 300Hz<br />
after 6s 200Hz + 300Hz = 500Hz<br />
after 8s 300Hz + 500Hz = 800Hz<br />
....<br />
and so on<br />
...</p>
<p><img src="/uploads/files/1635917209488-pure-data-patch.png" alt="pure data patch.png" class="img-responsive img-markdown" /><br />
I tried to write code but simply didn't work<br />
I would be very grateful if you could help me with writing code</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency</guid><dc:creator><![CDATA[yaonway]]></dc:creator><pubDate>Wed, 03 Nov 2021 05:26:56 GMT</pubDate></item><item><title><![CDATA[Reply to How to make sound with gradually increasing frequency on Wed, 03 Nov 2021 07:20:23 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/yaonway">@yaonway</a> Try......... <a href="/uploads/files/1635923298364-this.pd">this.pd</a></p>
<p><img src="/uploads/files/1635923312848-capture.jpg" alt="Capture.JPG" class="img-responsive img-markdown" /></p>
<p>It is using [f] ..... to store the previous values.  Have a look at this to understand how.......<br />
<a href="https://forum.pdpatchrepo.info/topic/13320/welcome-to-the-forum" rel="nofollow">https://forum.pdpatchrepo.info/topic/13320/welcome-to-the-forum</a></p>
<p>Your series seems to be &quot;frequency = sum of previous two frequencies&quot;.<br />
It will rapidly become ultrasonic so I have put a stop once it has done so.<br />
You can replace [osc~]...... a sine wave..... with a sound generator of your choosing.</p>
<p>If you actually want a smooth change arriving at the desired frequency at the end of each 2 seconds then use [line] like this........ <a href="/uploads/files/1635923697053-this2.pd">this2.pd</a><br />
David.</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency/2</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency/2</guid><dc:creator><![CDATA[whale-av]]></dc:creator><pubDate>Wed, 03 Nov 2021 07:20:23 GMT</pubDate></item><item><title><![CDATA[Reply to How to make sound with gradually increasing frequency on Wed, 03 Nov 2021 13:25:47 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/whale-av">@whale-av</a> said:</p>
<blockquote>
<p>If you actually want a smooth change arriving at the desired frequency at the end of each 2 seconds then use [line]</p>
</blockquote>
<p>or [line~] for even more smoothness~</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency/3</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency/3</guid><dc:creator><![CDATA[lacuna]]></dc:creator><pubDate>Wed, 03 Nov 2021 13:25:47 GMT</pubDate></item><item><title><![CDATA[Reply to How to make sound with gradually increasing frequency on Wed, 03 Nov 2021 19:23:58 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="http://forum.pdpatchrepo.info/user/whale-av">@whale-av</a> said:</p>
<blockquote>
<p>Your series seems to be &quot;frequency = sum of previous two frequencies&quot;.</p>
</blockquote>
<p>So a fibonacci sequence. You can cut out the extra float, do a simple +1 count, run it through a fibo algorithm and multiply by starting frequency. <a href="/uploads/files/1635967324258-fibonacci.pd">fibonacci.pd</a></p>
<p><img src="/uploads/files/1635967341881-screenshot_2021-11-03_20-19-33.png" alt="Screenshot_2021-11-03_20-19-33.png" class="img-responsive img-markdown" /></p>
<p>To be fair you could just do <code>[expr int(0.5 + pow(1.618034, $f1)/sqrt(5))]</code> but I am the grumpy old anti expr fundamentalist <img class="emoji emoji-extended" src="http://forum.pdpatchrepo.info/plugins/nodebb-plugin-emoji-extended/images/grinning.png" title=":)" alt=":)" /></p>
]]></description><link>http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency/4</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/13694/how-to-make-sound-with-gradually-increasing-frequency/4</guid><dc:creator><![CDATA[bocanegra]]></dc:creator><pubDate>Wed, 03 Nov 2021 19:23:58 GMT</pubDate></item></channel></rss>