fixParms               package:simecol               R Documentation

_F_i_x '_p_a_r_m_s', '_i_n_i_t' _o_r ''_i_m_e_s' _S_l_o_t _o_f '_s_i_m_e_c_o_l' _O_b_j_e_c_t_s

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

     The functions invoke an editor dialog for parameters, initial
     values or time steps of 'simObj' objects and then assign the new
     (edited) version of 'x' in the user's workspace. A Tcl/Tk version
     or spreadsheet editor is displayed if possible depending on the
     structure of the respective slot.

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

       fixParms(x)
       fixTimes(x)
       fixInit(x)

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

       x: A valid instance of the 'simObj' class.

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

     'sEdit', 'simObj', 'parms', 'times', 'init', 'fix'

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

       ## Not run: 
         data(lv)        # load basic Lotka-Volterra model
         fixParms(lv) 
         plot(sim(lv))

         data(conway)    # Conway's game of life
         init(conway) <- matrix(0, 10, 10)
         fixInit(conway) # enter some "1"
         sim(conway, animate=TRUE, delay=100)
       ## End(Not run)

