indexFindInterval           package:rindex           R Documentation

_M_i_d _l_e_v_e_l _s_e_a_r_c_h: _i_n_t_e_r_v_a_l

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

     Find index positions in interval of search values

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

      indexFindInterval(obj, low = NULL, high = NULL, low.include = TRUE, high.include = TRUE, low.exact = FALSE, high.exact = FALSE, lowFUN = FUN, highFUN = FUN, FUN = indexFind)

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

     obj: an object of class 'index' 

     low: low search value 

    high: high search value 

low.include: FALSE to not include the lower search value (default TRUE) 

high.include: FALSE to not include the upper search value (default
          TRUE) 

low.exact: TRUE to require the the low search value is present (default
          FALSE) 

high.exact: TRUE to require the the upper search value is present
          (default FALSE) 

  lowFUN: low level search function to identify lower index position
          (default 'FUN') 

 highFUN: low level search function to identify lower index position
          (default 'FUN') 

     FUN: low level search function to identify both index positions
          (default 'indexFind') 

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


       'indexFindInterval'  finding a sequence of exact or approximate values

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

     An integer sequence of index positions

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

     Jens Oehlschlgel

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

     'index', 'indexFind', 'indexMatch'

