The class Arm
represents an arm and stores information concerning an arm.
Arm(
name = character(0),
size = numeric(0),
administrations = list(),
initialConditions = list(),
samplingTimes = list(),
administrationsConstraints = list(),
samplingTimesConstraints = list(),
evaluationModel = list(),
evaluationGradients = list(),
evaluationVariance = list(),
evaluationFim = Fim()
)
A string giving the name of the arm.
A integer giving the size of the arm.
A list giving the objects of class Administration
that define the administrations of the arm.
A list giving the initial conditions for the ode model where the names are string that define the variable and their value are giving by double
A list giving the objects of class SamplingTime
that define the sampling time of the arm.
A list giving the objects of class AdministrationsConstraints
that define the administration constraints of the arm.
A list giving the objects of class SamplingTimeConstraints
that define the sampling time constraints of the arm.
A list giving the evaluation of the responses of the arm.
A list giving the evaluation of the responses gradient of the arm.
A list giving the evaluation of the variance.
A object of class Fim
giving the Fisher Information Matrix.