<?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 implement amount control to amplitude modulation?]]></title><description><![CDATA[<p>I'm trying to implement amount control to amplitude modulation similar to the amount control of frequency modulation. The more amount, the more amplitude variation. The problem is that I can't figure out how to implement it correctly.</p>
<p>Here is a simple amplitude modulation patch: <a href="http://i.imgur.com/gsVDyw1.png" rel="nofollow">http://i.imgur.com/gsVDyw1.png</a></p>
<p>The idea is that when no amount is applied, no modulation can be heard, and as the amount is raised the modulation becomes more prominent, and when the amount is at the max the carrier's amplitude is being modulated all the way to zero amp.</p>
<p>But how do I do that? Here is a patch where there is a control for the amplitude of the modulator: <a href="http://i.imgur.com/DJIIfQs.png" rel="nofollow">http://i.imgur.com/DJIIfQs.png</a></p>
<p>The problem here is that, as we are multiplying both signals, the control also lowers and raises the amplitude of the carrier. So when the &quot;amount&quot; is zero, there is no signal. That &quot;amount&quot; control ends up modifying the amplitude of the carrier too. It's not so much of an amount control, and ends up being a volume control for the carrier too.</p>
<p>How can an amount control for amplitude modulation be implemented? At the lowest amount there is no modulation, and as the amount rises the modulation becomes more intense. Is there a way to do this?</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8613/how-to-implement-amount-control-to-amplitude-modulation</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Jul 2026 04:52:27 GMT</lastBuildDate><atom:link href="http://forum.pdpatchrepo.info/topic/8613.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 05 Sep 2014 18:41:33 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to implement amount control to amplitude modulation? on Fri, 05 Sep 2014 18:49:08 GMT]]></title><description><![CDATA[<p>I'm trying to implement amount control to amplitude modulation similar to the amount control of frequency modulation. The more amount, the more amplitude variation. The problem is that I can't figure out how to implement it correctly.</p>
<p>Here is a simple amplitude modulation patch: <a href="http://i.imgur.com/gsVDyw1.png" rel="nofollow">http://i.imgur.com/gsVDyw1.png</a></p>
<p>The idea is that when no amount is applied, no modulation can be heard, and as the amount is raised the modulation becomes more prominent, and when the amount is at the max the carrier's amplitude is being modulated all the way to zero amp.</p>
<p>But how do I do that? Here is a patch where there is a control for the amplitude of the modulator: <a href="http://i.imgur.com/DJIIfQs.png" rel="nofollow">http://i.imgur.com/DJIIfQs.png</a></p>
<p>The problem here is that, as we are multiplying both signals, the control also lowers and raises the amplitude of the carrier. So when the &quot;amount&quot; is zero, there is no signal. That &quot;amount&quot; control ends up modifying the amplitude of the carrier too. It's not so much of an amount control, and ends up being a volume control for the carrier too.</p>
<p>How can an amount control for amplitude modulation be implemented? At the lowest amount there is no modulation, and as the amount rises the modulation becomes more intense. Is there a way to do this?</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8613/how-to-implement-amount-control-to-amplitude-modulation</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8613/how-to-implement-amount-control-to-amplitude-modulation</guid><dc:creator><![CDATA[JCPedroza]]></dc:creator><pubDate>Fri, 05 Sep 2014 18:49:08 GMT</pubDate></item><item><title><![CDATA[Reply to How to implement amount control to amplitude modulation? on Mon, 08 Sep 2014 00:35:33 GMT]]></title><description><![CDATA[<p>Ooh, I know, teacher! Call on me, I'm ever so smart!</p>
<p>I think you need to add back in the &quot;remainder&quot; of what's not being modulated. So, when your slider is at zero, you need to add {+ 1} before the [*~], lest you multiply by zero, and get zero.</p>
<p>Take a second output from your Hslider, run it into [swap 1], and those two outlets into the respective [-] inlets. That'll give you the difference between the AM amount and one - ie, when the slider's at 0, then you need the un-modulated amount to be 1, and vice-versa.</p>
<pre><code>[*~ 0.5]    &lt;- your old patch part
     |
     | [Hslider]   &lt;- your old Hslider
     | /      \
    [*~]       [swap 1]
     |          |     |
     |          [-  ]     &lt;- weird looking subtraction object
      \         /
          [+~]
           /
       [*~]      &lt;- the final multiplication before the output
</code></pre>
<p>Dang. Ugly. Sorry, I don't know how to enter ASCII art in this new forum. That took me longer than doing the patch!</p>
]]></description><link>http://forum.pdpatchrepo.info/topic/8613/how-to-implement-amount-control-to-amplitude-modulation/2</link><guid isPermaLink="true">http://forum.pdpatchrepo.info/topic/8613/how-to-implement-amount-control-to-amplitude-modulation/2</guid><dc:creator><![CDATA[Load074]]></dc:creator><pubDate>Mon, 08 Sep 2014 00:35:33 GMT</pubDate></item></channel></rss>