logistic(RTisean)
logistic()所属R语言包:RTisean
Logistic model
Logistic模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Creates a time series from the logistic model.
创建一个时间序列的Logistic模型。
用法----------Usage----------
logistic(iter=1000, r=4,x=0.2,t=0,noisesd=0)
参数----------Arguments----------
参数:iter
length of the time series.
长度的时间序列。
参数:r
parameter of the logistic model.
Logistic模型的参数。
参数:x
initial cohordinate.
初始cohordinate。
参数:t
number of transients discarded.
数的瞬态丢弃。
参数:noisesd
standard deviaton of white Gaussian noise.
标准deviaton高斯白噪声。
Details
详细信息----------Details----------
If noisesd is set greater than zero, then the iterated model becomes:
如果noisesd设置大于零,则迭代模型变为:
x_[t+1]=rx_[t](1-x_[t])+n,
x_[t+1]=rx_[t](1-x_[t])+n,
where n is drawn from N(0,\code{noisesd}).
其中n来自N(0,\code{noisesd})。
值----------Value----------
A vector containing the time series.
一个向量,包含的时间序列。
实例----------Examples----------
## Not run: [#不运行:]
dat <- logistic(150,3.9,0.1,1000)
plot(dat,xlab="Time",ylab="x", main="Time Series from Logistic Model with r=3.9",
type="l")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|