RT_delay               package:RTisean               R Documentation

_E_m_b_e_d _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:

     Calculates delay coordinates of a time series.

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

     RT_delay(series, d = 1, m = 2, l, x = 0, c = 1)

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

  series: a vector or a matrix.

       d: delay.

       m: embedding dimension.

       l: number of values to be read.

       x: number of lines to be ignored.

       c: column to be read.

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

     A matrix containing the delayed time series.

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

     ## Not run: 

     dat <- logistic(10000,4,0.1,1000)
     delayeddat <- RT_delay(dat)
     plot(delayeddat,xlab="x(t)",ylab="x(t+1)", main="Logistic Model Delayed Chaotic Attractor",cex=0.6,col=2)

     ## End(Not run)

