
Last chance! 50% off unlimited learning
Sale ends in
tts
classThe tts
(time/timescale) class is for matrices for which the rows correspond
to times and the columns correspond to timescales. This is a general class from
which other classes inherit (e.g., wt
, wmf
, wpmf
). tts
inherits from the list
class.
tts(times, timescales, values)
A numeric vector of increasing real values, spacing 1
A numeric vector with positive entries
A complex or numeric matrix of dimensions length(times)
by
length(timescales)
tts
returns an object of class tts
. Slots are:
a numeric vector of evenly spaced times
a numeric vector of positive timescales
a complex or numeric matrix of dimensions length(times)
by length(timescales)
tts_methods
, wt
, wmf
, wpmf
,
browseVignettes("wsyn")
# NOT RUN {
times<-1:10
timescales<-1/c(1:10)
values<-matrix(1,length(times),length(timescales))
h<-tts(times,timescales,values)
# }
Run the code above in your browser using DataLab