embedd {tseriesChaos} | R Documentation |
Embedding of a time series with provided time delay and embedding dimension parameters.
embedd(x, m, d)
x |
time series |
m |
embedding dimension |
d |
time delay |
Embedding of a time series with provided delay and dimension parameters.
Matrix with columns corresponding to lagged time series.
Antonio, Fabio Di Narzo
library(scatterplot3d) xyz <- embedd(rossler.ts, m=3, d=8) colnames(xyz) <- c("x","y","z") scatterplot3d(xyz, type="l", xlab=expression(x[t]), ylab=expression(x[t+tau]), zlab=expression(x[t+2*tau]))