BBF(Sim.DiffProc)
BBF()所属R语言包:Sim.DiffProc
Creating Flow of Brownian Bridge Model
创建流的布朗桥模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simulation flow of brownian bridge model.
布朗桥模型的仿真流程。
用法----------Usage----------
BBF(N, M, t0, T, x0, y, output = FALSE)
参数----------Arguments----------
参数:N
size of process.
大小的处理。
参数:M
number of trajectories.
的轨迹数。
参数:t0
initial time.
初始时间。
参数:T
final time.
最后的时间。
参数:x0
initial value of the process at time t0.
初始值的过程中,在时间t0。
参数:y
terminal value of the process at time T.
终端价值的过程在时间T。
参数:output
if output = TRUE write a output to an Excel (.csv).
如果output = TRUE写的output到Excel(CSV)。
Details
详细信息----------Details----------
The function BBF returns a flow of the brownian bridge starting at x0 at time t0 and ending at y at time T.
功能BBF返回的布朗桥从x0开始的流程的在时间t0和结束于y时间T。
It is defined as :
它被定义为:
This process is easily simulated using the simulated trajectory of the Wiener process W(t).
这个过程是简单的模拟维纳过程W(t)使用模拟的轨迹。
值----------Value----------
data.frame(time,x) and plot of process.
数据框(时间,x)和图的过程。
(作者)----------Author(s)----------
Boukhetala Kamal, Guidoum Arsalane.
参见----------See Also----------
BB simulation brownian bridge Model, diffBridge Diffusion Bridge Models, BMN simulation brownian motion by the Normal Distribution , BMRW simulation brownian motion by a Random Walk, GBM simulation geometric brownian motion, ABM simulation arithmetic brownian motion, snssde Simulation Numerical Solution of SDE.
BB模拟布朗桥模型,diffBridge扩散桥梁模型,BMN模拟布朗运动的正态分布,BMRW模拟布朗运动的随机游走,GBM模拟几何布朗运动,ABM模拟算术布朗运动,snssde SDE模拟数值解。
实例----------Examples----------
## flow of brownian bridge model[#流的布朗桥模型]
## starting at x0 =1 at time t0=0 and ending at y = -2 at time T =1.[#在x0开始在时间t0 = 1 = 0和在y = -2结束在时间T = 1。]
BBF(N=1000,M=5,t0=0,T=1,x0=-1,y=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|