Learn R Programming

seeds (version 0.9.1)

setMeas: set measurements of the model

Description

The odeModel object stores all important information. Measurements of the objects can be set directly by adressing the slot, or with this function.

Usage

setMeas(odeModel, meas)

# S4 method for odeModel setMeas(odeModel, meas)

Arguments

odeModel

an object of the class odeModel

meas

measurements of the model, a matrix with measurements of the model and the corresponding time values

Value

an object of odeModel

Examples

Run this code
# NOT RUN {
data(uvbData)
data(uvbModel)

measurements <- uvbData[,1:6]

newModel <- setMeas(odeModel = uvbModel, meas = measurements)

# }

Run the code above in your browser using DataLab