henon                package:RTisean                R Documentation

_H_e_n_o_n _M_o_d_e_l

_D_e_s_c_r_i_p_t_i_o_n:

     Creates a time series from the Henon model.

_U_s_a_g_e:

     henon(l = -1, A = 1.4, B = 0.3, X = -1, Y = -1, x = 10000)

_A_r_g_u_m_e_n_t_s:

       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. 

_V_a_l_u_e:

     A matrix containing the two-dimensional time series.

_E_x_a_m_p_l_e_s:

     ## 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)

