upoembed               package:RTisean               R Documentation

_E_m_b_e_d_d_i_n_g _p_e_r_i_o_d_i_c _o_r_b_i_t_s _u_s_i_n_g _d_e_l_a_y _c_o_o_r_d_i_n_a_t_e_s

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

     Embeds periodic orbits, produced as output of 'upo',  using delay
     coordinates.

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

     upoembed(data, d, m = 2, p = 1, l, x = 0, c = 1)

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

    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. 

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

     A matrix containing the embedded periodic orbits as columns.

_N_o_t_e:

     This actually gives erroneous results

_S_e_e _A_l_s_o:

     'upo'

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

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

