mirror {sound} | R Documentation |
Interchange the left and the right channel of a stereo Sample object or a stereo wav file.
mirror(s)
s |
a Sample object, or a string giving the name of a wav file. |
If s
is a mono sample, it will be returned as it is.
a Sample object, with the left and the right channel of s
interchanged.
Matthias Heymann
panorama
for a command with more parameters, left
and right
for access to single channels of a sample.
## Not run: s <- stereo(Sine(440,1),Sine(220,1)) play(s) # higher tone is on the left play(mirror(s)) # now higher tone is on the right ## End(Not run)