DSCDD_RQA:

Usage Arguments Examples

Usage

1
DSCDD_RQA(m = 2, d = 1, window.length = 800, radius, measure.type = c("RR", "DET", "LMAX"))

Arguments

m
d
window.length
radius
measure.type

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- 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 (m = 2, d = 1, window.length = 800, radius, measure.type = c("RR", 
    "DET", "LMAX")) 
{
    rqa <- rqa$new(m = m, d = d, radius = radius, window.length = window.length, 
        measure.type = measure.type)
    description <- "Recurrence Quantification Analysis"
    l <- list(description = description, RObj = rqa)
    class(l) <- c("DSCDD_RQA", "DSCDD_R", "DSCDD")
    l
  }

faustogc/streamChaos documentation built on May 8, 2019, 9:22 a.m.