bioacoustica.demo.windowFunction: Demonstration Windowing function for waveforms

Usage Arguments Examples

Usage

1
bioacoustica.demo.windowFunction(number, start, end, wave, f, headers = FALSE)

Arguments

number
start
end
wave
f
headers

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (number, start, end, wave, f, headers = FALSE) 
{
    if (isTRUE(headers)) {
        return(c("win_num", "start_t", "end_t", "duration", "ACI"))
    }
    row <- c(number = number, start = start, end = end, duration = duration(wave, 
        f), ACI = ACI(wave, f))
    return(row)
  }

BioAcoustica/BioAcousticaR-tools documentation built on May 5, 2019, 3:46 p.m.