indexEQ                package:rindex                R Documentation

_H_i_g_h _l_e_v_e_l _c_o_m_p_a_r_i_s_o_n _f_u_n_c_t_i_o_n

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

     Compare index against value

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

     indexEQ(obj, x, what = c("pos", "val", "ind"), ...)
     indexNE(obj, x, what = c("pos", "val", "ind"), ...)
     indexLT(obj, x, what = c("pos", "val", "ind"), ...)
     indexLE(obj, x, what = c("pos", "val", "ind"), ...)
     indexGT(obj, x, what = c("pos", "val", "ind"), ...)
     indexGE(obj, x, what = c("pos", "val", "ind"), ...)

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

     obj: an object of class 'index' 

       x: a scalar comparison value 

    what: on of 'c("ind", "pos", "val")' 

     ...: further arguments passed to 'indexFindInterval' 

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


       'indexEQ'  index EQual value
       'indexNE'  index NotEqual value
       'indexLT'  index LowerThan value
       'indexGT'  index GreaterThan value
       'indexLE'  index LowerEqual value
       'indexGE'  index GreaterEqual value

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

     A vector of original positions (pos), index positions (ind) or
     values (val).

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

     Jens Oehlschlgel

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

     'index', 'indexFindInterval', '==.index'

