LDEsysMat(nlme)
LDEsysMat()所属R语言包:nlme
Generate system matrix for LDEs
生成系统矩阵LDEs
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generate the system matrix for the linear differential equations determined by a compartment model.
生成系统矩阵的线性差分方程的一室模型确定。
用法----------Usage----------
LDEsysMat(pars, incidence)
参数----------Arguments----------
参数: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.
一个名为From,To,Par列的整数矩阵。在Par列的值必须在1length(pars)的范围。 From列中的值必须介于1和车厢数量。 To列中的值必须是介于0和车厢数量。
Details
详情----------Details----------
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.
舱模型描述材料转让k在k车厢的系统线性系统的微分方程。鉴于系统和参数值的向量,该函数返回系统矩阵的描述。
This function is intended for use in a general system for solving compartment models, as described in Bates and Watts (1988).
此功能的目的是在解决舱模型,贝茨和Watts(1988)中所述的一般系统使用。
值----------Value----------
A k by k numeric matrix.
一个kk数字矩阵。
作者(S)----------Author(s)----------
Douglas Bates <a href="mailto:bates@stat.wisc.edu">bates@stat.wisc.edu</a>
参考文献----------References----------
Analysis and Its Applications, Wiley, New York.
举例----------Examples----------
# 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)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|