mirror {sound}R Documentation

Mirror a Stereo Sample

Description

Interchange the left and the right channel of a stereo Sample object or a stereo wav file.

Usage

mirror(s)

Arguments

s a Sample object, or a string giving the name of a wav file.

Details

If s is a mono sample, it will be returned as it is.

Value

a Sample object, with the left and the right channel of s interchanged.

Author(s)

Matthias Heymann

See Also

panorama for a command with more parameters, left and right for access to single channels of a sample.

Examples

## 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)

[Package sound version 1.2 Index]