

needUpdate(nlme)                             R Documentation

_C_h_e_c_k _i_f _U_p_d_a_t_e _i_s _N_e_e_d_e_d

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

     This function is generic; method functions can be writ-
     ten to handle specific classes of objects. By default,
     it tries to extract a `needUpdate' attribute of
     `object'. If this is `NULL' or `FALSE' it returns
     `FALSE'; else it returns `TRUE'.  Updating of objects
     usually takes place in iterative algorithms in which
     auxiliary quantities associated with the object, and
     not being optimized over, may change.

_U_s_a_g_e_:

     needUpdate(object)

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

  object: any object

_V_a_l_u_e_:

     a logical value indicating whether `object' needs to be
     updated.

_A_u_t_h_o_r_(_s_)_:

     Jose Pinheiro and Douglas Bates

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

     library(nlme)
     data(Orthodont)
     vf1 <- varExp()
     vf1 <- initialize(vf1, data = Orthodont)
     needUpdate(vf1)

