rmname              package:wavethresh              R Documentation

_R_e_t_u_r_n _a _i_p_n_d_a_c_w _m_a_t_r_i_x _s_t_y_l_e _n_a_m_e.

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

     This function returns a character string according to a particular
     format for naming 'ipndacw' matrices.

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

     rmname(J, filter.number, family)

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

       J: A negative integer representing the order of the 'ipndacw'
          matrix.

filter.number: The index number of the wavelet used to build the
          'ipndacw' matrix.

  family: The wavelet family used to build the 'ipndacw' matrix.

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

     Some of the matrices computed by 'ipndacw' take a long time to
     compute. Hence it is a good idea to store them and reuse them.
     This function generates a name according to a particular naming
     scheme that permits a search algorithm to easily find the
     matrices. 

     Each matrix has three defining characteristics: its _order_,
     _filter.number_ and _family_. Each of these three characteristics
     are concatenated together to form a name.

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

     A character string containing the name of a matrix according to a
     particular naming scheme.

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

     Version 3.9 Copyright Guy Nason 1998

_R_e_f_e_r_e_n_c_e_s:

     Nason, G.P., von Sachs, R. and Kroisandt, G. (1998). Wavelet
     processes and adaptive estimation of the evolutionary wavelet
     spectrum. _Technical Report_, Department of Mathematics University
     of Bristol/ Fachbereich Mathematik, Kaiserslautern.

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

     'ewspec', 'ipndacw',

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

     #
     # What's the name of the order 4 Haar matrix?
     #
     #rmname(-4, filter.number=1, family="DaubExPhase")
     #[1] "rm.4.1.DaubExPhase"
     #
     # What's the name of the order 12 Daubechies least-asymmetric wavelet
     # with 7 vanishing moments?
     #
     #rmname(-12, filter.number=7, family="DaubLeAsymm")             
     #[1] "rm.12.7.DaubLeAsymm"

