RT_delay {RTisean} | R Documentation |
Calculates delay coordinates of a time series.
RT_delay(series, d = 1, m = 2, l, x = 0, c = 1)
series |
a vector or a matrix. |
d |
delay. |
m |
embedding dimension. |
l |
number of values to be read. |
x |
number of lines to be ignored. |
c |
column to be read. |
A matrix containing the delayed time series.
## Not run: dat <- logistic(10000,4,0.1,1000) delayeddat <- RT_delay(dat) plot(delayeddat,xlab="x(t)",ylab="x(t+1)", main="Logistic Model Delayed Chaotic Attractor",cex=0.6,col=2) ## End(Not run)