<br><br><div class="gmail_quote">On Fri, Oct 5, 2012 at 3:57 PM, Kassen <span dir="ltr"><<a href="mailto:signal.automatique@gmail.com" target="_blank">signal.automatique@gmail.com</a>></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 Fri, Oct 05, 2012 at 03:45:48PM +0200, Alberto Alassio wrote:<br>
> so you just  make  index * m.gain() ?<br>
<br>
</div>Almost. I'd use;<br>
<br>
m.gain(index);<br>
<br>
or;<br>
<br>
index => m.gain;<br>
<br>
Note that this sets the amplitude of the osc's output to something far<br>
beyond the normal amplitude. That is desired here, but not the kind of<br>
signal you'd want to listen to directly. For signals we intend to<br>
listen to we'd set it to something between 0 and 1.<br>
<div class="im"><br>
><br>
> Kas said:<br>
><br>
> "While we are at it; I'd also use the fm input to the carrier set by<br>
><br>
> > the .sync() member function."<br>
> ><br>
><br>
> I'm not succeeding because I'm not able to use .sync.<br>
> There's written something about in the manual, is it correct to write<br>
> 2 => c.sync ?  Cause at SinOsc page it is written : " (2) fm synth " .<br>
><br>
<br>
</div>yes; <a href="http://chuck.cs.princeton.edu/doc/program/ugen_full.html#sinosc" target="_blank">http://chuck.cs.princeton.edu/doc/program/ugen_full.html#sinosc</a><br>
<br>
This configures how the SinOsc deals with signals at its input. So;<br>
<br>
SinOSc lfo => SinOsc sound => dac; //signal chain<br>
<br>
2 => sound.sync; //fm synth<br>
<br>
//set amplitude and freq for the lfo here<br>
<div class="im"><br>
><br>
> And what about Step? you put it in the blackhole also and you set it at<br>
> carrier frequency?<br>
<br>
</div>ok. to continue the above example;<br>
<br>
Step centre_freq => sound; //add it to the lfo<br>
440 => centre_freq.next; //set the centre to A4<br>
<br>
> I'M SHOUTING!!<br>
<br>
Relax. All will be fine :-).<br>
<br>
Yours,<br>
Kas.<br>
<div class="HOEnZb"><div class="h5">_______________________________________________<br>
chuck-users mailing list<br>
<a href="mailto:chuck-users@lists.cs.princeton.edu">chuck-users@lists.cs.princeton.edu</a><br>
<a href="https://lists.cs.princeton.edu/mailman/listinfo/chuck-users" target="_blank">https://lists.cs.princeton.edu/mailman/listinfo/chuck-users</a><br>
</div></div></blockquote></div><br>