LDEsysMat                package:nlme                R Documentation

_G_e_n_e_r_a_t_e _s_y_s_t_e_m _m_a_t_r_i_x _f_o_r _L_D_E_s

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

     Generate the system matrix for the linear differential equations
     determined by a compartment model.

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

     LDEsysMat(pars, incidence)

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

    pars: a numeric vector of parameter values.

incidence: an integer matrix with columns named 'From', 'To', and
          'Par'.  Values in the 'Par' column must be in the range 1 to
          'length(pars)'.   Values in the 'From' column must be between
          1 and the number of compartments. Values in the 'To' column
          must be between 0 and the number of compartments.

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

     A compartment model describes material transfer between 'k' in a
     system of 'k' compartments to a linear system of differential
     equations. Given a description of the system and a vector of
     parameter values this function returns the system matrix.

     This function is intended for use in a general system for solving
     compartment models, as described in Bates and Watts (1988).

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

     A 'k' by 'k' numeric matrix.

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

     Douglas Bates bates@stat.wisc.edu

_R_e_f_e_r_e_n_c_e_s:

     Bates, D. M. and Watts, D. G. (1988), _Nonlinear Regression
     Analysis and Its Applications_, Wiley, New York.

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

     # incidence matrix for a two compartment open system
     incidence <-
       matrix(c(1,1,2,2,2,1,3,2,0), ncol = 3, byrow = TRUE,
        dimnames = list(NULL, c("Par", "From", "To")))
     incidence
     LDEsysMat(c(1.2, 0.3, 0.4), incidence)

