<div dir="ltr">Ah... I&#39;ve seen this in some of the help patches. Why would someone do it with multiple [+~] instead of a single [*~]? There&#39;s no difference?</div><div class="gmail_extra"><br><br><div class="gmail_quote">
On Sat, Jan 18, 2014 at 12:49 PM, IOhannes m zmölnig <span dir="ltr">&lt;<a href="mailto:zmoelnig@iem.at" target="_blank">zmoelnig@iem.at</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">On 01/18/2014 06:24 PM, Pall Thayer wrote:<br>
&gt; Can anyone tell me what one is accomplishing when doing something like this:<br>
&gt;<br>
&gt; [osc~ 440]<br>
&gt; |<br>
&gt; [+~]<br>
</div>&gt; |\     x1<br>
&gt; [+~]<br>
&gt; |\     x2<br>
&gt; [+~]<br>
&gt; |\     x3<br>
&gt; [+~]<br>
&gt;        x4<br>
<div class="im">&gt;<br>
&gt; In other words, the chain of [+~] that feed the previous object&#39;s output<br>
&gt; into both inlets of the next... what does this do exactly?<br>
<br>
</div>it adds a signal with itself: y=x+x=2*x<br>
<br>
so the output of the 1st [+~] is<br>
x1=x0 (as the 2nd inlet~ is not connected)<br>
and the following [+~] will output:<br>
x2=x1+x1=2*x1=2*x0<br>
x3=x2+x2=2*x2=2*2*x0=4*x0<br>
x4=x3+x3=2*x3=2*4*x0=8*x0<br>
<br>
so you could write the patch as:<br>
<br>
[osc~ 440]<br>
|<br>
[*~ 8]<br>
<br>
<br>
more often you see [*~] instead of [+~], which is a simple way to square<br>
the input.<br>
<br>
fgmadsr<br>
<span class="HOEnZb"><font color="#888888">IOhannes<br>
<br>
</font></span><br>_______________________________________________<br>
<a href="mailto:Pd-list@iem.at">Pd-list@iem.at</a> mailing list<br>
UNSUBSCRIBE and account-management -&gt; <a href="http://lists.puredata.info/listinfo/pd-list" target="_blank">http://lists.puredata.info/listinfo/pd-list</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div>-- <br>*****************************<br>Pall Thayer<br>artist<br><a href="http://pallthayer.dyndns.org" target="_blank">http://pallthayer.dyndns.org</a><br>*****************************
</div>