Learn R Programming

deGradInfer (version 1.0.1)

solveODE: Solve ODE system explicitly.

Description

Solve ODE system explicitly.

Usage

solveODE(num.species, timePoints, ode.system, params)

Arguments

num.species

Number of variables (species) in the system.

timePoints

Time points at which to evaluate the ODE system.

ode.system

Function for calculating the derivatives of the ODE system.

params

Current values for the ODE parameter estimates.

Value

A list with two elements: x contains the results of integrating the ODE at the given time points, and error flags if there has been an error while invoking deSolve.