Simulates a dynamic system of provided ODEs
sim.cont(syst, start.time, end.time, dt, start.x, parms=NULL, obs.fun=function(x) x[1])
ODE system
starting time
ending time
time between observations
initial conditions
parameters for the system
observed function of the state
The time series of the observed function of the system's state
Simulates a dynamic system of provided ODEs.
Uses lsoda
in odesolve
for numerical integration of the system.
# NOT RUN {
rossler.ts <- sim.cont(rossler.syst, start=0, end=650, dt=0.1,
start.x=c(0,0,0), parms=c(0.15, 0.2, 10))
# }
Run the code above in your browser using DataLab