testEqualtframes           package:tframe           R Documentation

_C_o_m_p_a_r_e _T_w_o _T_i_m_e _F_r_a_m_e_s

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

     Generic function to compare two time frames.  The methods return a
      logical value, TRUE if the time frames are the same type and
     value and FALSE otherwise.

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

         testEqualtframes(tf1,tf2)
         ## Default S3 method:
         testEqualtframes(tf1,tf2)
         ## S3 method for class 'stamped':
         testEqualtframes(tf1,tf2)
         

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

tf1, tf2: Time frames of the same class.

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

     Time frames are compared. Time frames need to be of the same class
     (although it would be nice if they did not need to be).

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

     TRUE or FALSE

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

     'testEqual'

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

     testEqualtframes(tframe(matrix(1:10,10,2)), tframe(array(1:10, c(10,2))))

