Simple question about using SinOsc

question about how “mul” and “add” are implemented:

when using the “mul:” and “add:” parts of SinOsc, is the result:

(M * sin(f) ) + A

or is it
M * ( sin(f) + A )

?

And is there a way I can confirm the range of the output within SC?

Thanks!

Arun Chandra

This should show you:

{SinOsc.ar(10, 0, 0.5, 1)}.plot(0.1)

Muls then adds.

Sam

Thanks, Sam! — Arun