Out ; summing ; phase cancellation
| Newsgroups | gmane.comp.audio.supercollider.user |
|---|---|
| Message-ID | <CAHnM+yZZqCQxYrEaA4WH2pRLHDKGeC2Eyp1cukSVDQO4QezfRA@mail.gmail.com> |
hello list
i'm wondering why the graph "x" below doesn't phase cancel?
"y" cancels, as expected
does anyone know how to rewrite "x" in "y" form so that it sounds as in "x"?
best,
rd
SynthDef("x",{Out.ar(0,[SinOsc.ar([440,441],[0,pi]),SinOsc.ar([440,441],[pi,0])])}).play
SynthDef("y",{Out.ar(0,Mix([SinOsc.ar([440,441],[0,pi]),SinOsc.ar([440,441],[pi,0])]))}).play