Strange behaviour in FM modulation

While following along this awesome tutorial https://www.youtube.com/watch?v=eeglzRFlbso&t=301s,

I encountered different behaviour for

(1)

mod = SinOsc.ar(\ratio1.kr(1) * \freq.kr(1000)) * f * modInd * e;

car = SinOsc.ar(f + mod );

and

(2)

mod = SinOsc.ar(\ratio1.kr(1) * \freq.kr(1000)) ;

car = SinOsc.ar(f + mod * f * modInd * e);

I am new to supercollider, every hint, to direct further research is appreciated!

put f + (mod * f * modInd * e) into brackets. Then your second example should behave similiar. its going from left to right no point before line calculation

thanks that was easy… :slight_smile:

the tutorials by @alikthename are really great, still waiting for more!

2 Likes