henon {RTisean} | R Documentation |
Creates a time series from the Henon model.
henon(l = -1, A = 1.4, B = 0.3, X = -1, Y = -1, x = 10000)
l |
length of the time series. |
A |
parameter a of henon model. |
B |
parameter b of henon model. |
X |
initial x cohordinate. |
Y |
initial y cohordinate. |
x |
number of transients discarded. |
A matrix containing the two-dimensional time series.
## Not run: dat <- henon(l=10000,X=0.1,Y=0.2) plot(dat, xlab="x(t)",ylab="y(t)", main="Henon Chaotic Attractor") ## End(Not run)