simchirp             package:wavethresh             R Documentation

_C_o_m_p_u_t_e _a_n_d _r_e_t_u_r_n _s_i_m_u_l_a_t_e_d _c_h_i_r_p _f_u_n_c_t_i_o_n.

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

     This function computes and returns the coordinates of the
     reflected simulated chirp function described in Nason and
     Silverman, 1995. This function is a useful test function for
     evaluating wavelet shrinkage and time-scale analysis methodology
     as its frequency changes over time.

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

     simchirp(n=1024)

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

       n: The number of ordinates from which to sample the chirp
          signal.

_D_e_t_a_i_l_s:

     This function computes and returns the x and y coordinates of the
     reflected chirp function described in Nason and Silverman, 1995. 

     The formula for the reflected simulated chirp is  *formula*

     The chirp returned is a discrete sample on 'n' equally spaced
     points between -1 and 1.

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

     A list with two components: 

       x: a vector of length 'n' containing the ordered x ordinates of
          the chirp from -1 to 1.

       y: a vector of length 'n' containing the corresponding y
          ordinates of the chirp.

_R_E_L_E_A_S_E:

     Version 3.5.3 Copyright Guy Nason 1994

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

     #
     # Generate the chirp
     #
     #test.data <- simchirp()$y
     #ts.plot(test.data)

