wpst               package:wavethresh               R Documentation

_N_o_n-_d_e_c_i_m_a_t_e_d _w_a_v_e_l_e_t _p_a_c_k_e_t _t_r_a_n_s_f_o_r_m.

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

     This function computes the non-decimated wavelet packet transform
     as described by Nason, Sapatinas and Sawczenko, 1998. The
     non-decimated wavelet packet transform (NWPT) contains all
     possible shifted versions of the wavelet packet transform.

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

     wpst(data, filter.number=10, family="DaubLeAsymm", FinishLevel)

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

    data: A vector containing the data you wish to decompose. The
          length of this vector must be a power of 2.

filter.number: This selects the smoothness of wavelet that you want to
          use in the decomposition. By default this is 10, the
          Daubechies least-asymmetric orthonormal compactly supported
          wavelet with 10 vanishing moments.

  family: specifies the family of wavelets that you want to use. The
          options are "DaubExPhase" and "DaubLeAsymm".

FinishLevel: 

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

     This function computes the packet-ordered non-decimated wavelet
     packet transform of data as described by Nason, Sapatinas and
     Sawczenko, 1998. It assumes periodic boundary conditions. The
     order of computation of the NWPT is O(n^2) if n is the number of
     input data points. 

     Packets can be extracted from the 'wpst.object' produced by this
     function using the 'getpacket.wpst' function. Whole resolution
     levels of non-decimated wavelet packet coefficients in time order
     can be obtained by using the 'accessD.wpst' function.

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

     An object of class 'wpst' containing the discrete packet-ordered
     non-decimated wavelet packet coefficients.

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

     Version 3.8.8 Copyright Guy Nason 1997

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

     'accessD', 'accessD.wpst', 'filter.select', 'getpacket',
     'getpacket.wpst',

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

     #
     # EXAMPLE pending
     #

