sim.cont(tseriesChaos)
sim.cont()所属R语言包:tseriesChaos
Simulates a continuous dynamic system
模拟一个连续的动态系统
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulates a dynamic system of provided ODEs
模拟一个动态的系统提供的常微分方程
用法----------Usage----------
sim.cont(syst, start.time, end.time, dt, start.x, parms=NULL, obs.fun=function(x) x[1])
参数----------Arguments----------
参数:syst
ODE system
ODE系统
参数:start.time
starting time
开始时间
参数:end.time
ending time
结束时间
参数:dt
time between observations
观测时间之间
参数:start.x
initial conditions
初始条件
参数:parms
parameters for the system
系统的参数
参数:obs.fun
observed function of the state
观察功能状态
Details
详细信息----------Details----------
Simulates a dynamic system of provided ODEs. Uses lsoda in odesolve for numerical integration of the system.
模拟一个动态的系统提供的常微分方程。使用lsoda中odesolve数值积分的系统。
值----------Value----------
The time series of the observed function of the system's state
所观察到的功能的系统的状态的时间系列
(作者)----------Author(s)----------
Antonio, Fabio Di Narzo
参见----------See Also----------
lorenz.syst, rossler.syst, duffing.syst
lorenz.syst,rossler.syst,duffing.syst
实例----------Examples----------
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))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|