setMeas {seeds} | R Documentation |
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 signature '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
data(uvbData)
data(uvbModel)
measurements <- uvbData[,1:6]
newModel <- setMeas(odeModel = uvbModel, meas = measurements)
[Package seeds version 0.9.1 Index]