Wave {tuneR} | R Documentation |
Constructors and coercion for class Wave objects
Wave(left, ...) ## S4 method for signature 'numeric': Wave(left, right = numeric(0), samp.rate = 44100, bit = 16, ...)
left, right, samp.rate, bit |
See Section “Slots”. |
... |
Further arguments to be passed to the default method Wave.default . |
An object of Wave-class.
Uwe Ligges, ligges@statistik.tu-dortmund.de
Wave-class, writeWave
, readWave
# constructing a Wave object (1 sec.) containing sinus sound with 440Hz: x <- seq(0, 2*pi, length = 44100) channel <- round(32000 * sin(440 * x)) Wobj <- Wave(left = channel) Wobj # or more easily: Wobj <- sine(440, bit = 16)