Learn R Programming

PSM (version 0.8-12)

PSM.template: Creates a template for a model in PSM

Description

Creates a template with R-syntax to help setup a model in PSM.

Usage

PSM.template(Linear=FALSE,dimX=2,dimY=3,dimU=4,dimEta=5,file="")

Arguments

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.

Value

None (invisible NULL).

References

Please visit http://www.imm.dtu.dk/psm or refer to the help page for PSM.

See Also

PSM, PSM.estimate, PSM.smooth, PSM.template

Examples

Run this code
# NOT RUN {
# 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)
# }

Run the code above in your browser using DataLab