Learn R Programming

sonicscrewdriver (version 0.0.7)

concat: Concatenate two or more Wave-like objects.

Description

The concat() method is a more flexible version of the bind() method from tuneR package, that allows specifying more advanced types of concatenation. Setting method to "noClick" will remove any click between Wave objects caused by sudden jumps in amplitude by applying tuneR::prepComb() appropriately with default value of zero (this is only effective for the left channel or stereo or multi-channel recordings).

Usage

concat(object, ..., method = "bind")

# S4 method for Wave concat(object, ..., method = "bind")

# S4 method for WaveMC concat(object, ..., method = "bind")

# S4 method for TaggedWave concat(object, ..., method = "bind")

# S4 method for TaggedWaveMC concat(object, ..., method = "bind")

Value

A concatenated Wave like object, with type of object.

Arguments

object

A Wave like object.

...

Wave like objects to concatenate to object.

method

One of "bind", "noClick". Default is "bind".