BM(sde)
BM()所属R语言包:sde
Brownian motion, Brownian bridge, and geometric Brownian motion simulators
布朗运动,布朗桥,几何布朗运动模拟器
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Brownian motion, Brownian bridge, and geometric Brownian motion simulators.
布朗运动,布朗桥,几何布朗运动模拟器。
用法----------Usage----------
BBridge(x=0, y=0, t0=0, T=1, N=100)
BM(x=0, t0=0, T=1, N=100)
GBM(x=1, r=0, sigma=1, T=1, N=100)
参数----------Arguments----------
参数:x
initial value of the process at time t0.
初始值的过程中,在时间t0。
参数:y
terminal value of the process at time T.
终端价值的过程在时间T。
参数:t0
initial time.
初始时间。
参数:r
the interest rate of the GBM.
利率的大紫荆勋章。
参数:sigma
the volatility of the GBM.
的波动大紫荆勋章。
参数:T
final time.
最后的时间。
参数:N
number of intervals in which to split [t0,T].
数的时间间隔,在其中分裂[t0,T]。
Details
详细信息----------Details----------
These functions return an invisible ts object containing a trajectory of the process calculated on a grid of N+1 equidistant points between t0 and T; i.e., t[i] = t0 + (T-t0)*i/N, i in 0:N. t0=0 for the geometric Brownian motion.
这些函数会返回一个无形的ts对象,其中包含N+1之间的等距点t0和T一格的计算过程的轨迹,也就是说,t[i] = t0 + (T-t0)*i/N, i in 0:N。 t0=0几何布朗运动。
The function BBridge returns a trajectory of the Brownian bridge starting at x at time t0 and ending at y at time T; i.e.,
的功能BBridge返回一个轨迹的布朗桥xt0和y时T“,即在时间,
The function GBM returns a trajectory of the geometric Brownian motion starting at x at time t0=0; i.e., the process
函数GBM返回的几何布朗运动的轨迹,开始在x在时间t0=0“,即,
值----------Value----------
<table summary="R valueblock"> <tr valign="top"><td>X</td> <td> an invisible ts object</td></tr> </table>
<table summary="R valueblock"> <tr valign="top"> <TD> X</ TD> <TD>一种无形的ts对象</ TD> </ TR> </表>
(作者)----------Author(s)----------
Stefano Maria Iacus
实例----------Examples----------
plot(BM())
plot(BBridge())
plot(GBM())
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|