extendNBase         package:MassSpecWavelet         R Documentation

_E_x_t_e_n_d _t_h_e _r_o_w _n_u_m_b_e_r _o_f _a _m_a_t_r_i_x _a_s _t_h_e _e_x_p_o_n_e_n_t_i_a_l _o_f _b_a_s_e _N

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

     Extend the data as the exponential of base N by increasing row
     number.

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

     extendNBase(x, nLevel=1, base=2, ...) 

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

       x: data matrix 

  nLevel: the level of DWT decomposition. Basically, it is equivalent
          to changing the 'base' as base\^nLevel

    base: the base, 2 by default 

     ...: other parameters of used by 'extendLength' 

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

     The method 'open' is padding the the matrix with the last row.

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

     Return a extended matrix

_A_u_t_h_o_r(_s):

     Pan Du

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

     'extendLength'

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

             # a = matrix(rnorm(9), 3)
             # extendNBase(a)        ## not exposed function

