upoembed {RTisean} | R Documentation |
Embeds periodic orbits, produced as output of upo
,
using delay coordinates.
upoembed(data, d, m = 2, p = 1, l, x = 0, c = 1)
data |
the output containing the locations of periodic orbits as it
is produced by upo |
d |
delay. |
m |
embedding dimension. |
p |
period of orbit. |
l |
number of values to be read. |
x |
number of values to be skipped. |
c |
column to be read. |
A matrix containing the embedded periodic orbits as columns.
This actually gives erroneous results
## Not run: dat <- henon(1000) upoout <- upo(dat,m=2, v=0.1, n=70, p=6) upoemb <- upoembed(upoout,d=1) ## End(Not run)