PSM.template {PSM} | R Documentation |
Creates a template with R-syntax to help setup a model in PSM.
PSM.template(Linear=FALSE,dimX=2,dimY=3,dimU=4,dimEta=5,file="")
Linear |
Boolean. Linear or non-linear model. |
dimX |
Number of state equations. |
dimY |
Number of response variables. |
dimU |
Number of input variables (can be zero). |
dimEta |
Number of random effects (can be zero). |
file |
A character string naming the file to print
to. If '""' (the default), PSM.template prints to the standard
output connection.
|
None (invisible NULL
).
For further details please also read the package vignette pdf-document by writing vignette("PSM") in R.
Stig B. Mortensen and Søren Klim
Please visit http://www.imm.dtu.dk/psm or refer to
the help page for PSM
.
PSM
, PSM.estimate
,
PSM.smooth
, PSM.template
# Linear model with input, random effects and dose PSM.template(Linear=TRUE,dimX=1,dimY=2,dimU=3,dimEta=4) # Non-linear model without input, random effects and dose PSM.template(Linear=FALSE,dimX=1,dimY=2,dimU=0,dimEta=0)