rsac.skeleton {Rsac} | R Documentation |
Create an empty "Rsac" object. Note that most values are NA by default, including "amp" and "dt", which are the minimum that must be supplied to be useful.
rsac.skeleton(n)
n |
number of elements desired for the empty "rsac" object. |
an empty "rsac" object.
Eric M. Thompson <eric.thompson@tufts.edu>
x <- rsac.skeleton(1) x[[1]]$amp <- runif(1e3, min = -1) x[[1]]$dt <- 1 plot(x) x.t <- taper(x) lines(x.t, col = "blue")