2.5.1. sdepy.wiener_process¶
-
class
sdepy.wiener_process(paths=1, vshape=(), dtype=None, steps=None, i0=0, info=None, getinfo=True, method='euler', x0=0., mu=0., sigma=1., dw=None, corr=None, rho=None)[source]¶ Wiener process (Brownian motion) with drift.
Generates a process
x(t)that solves the following SDE:dx(t) = mu(t)*dt + sigma(t)*dw(t, dt)
where
dw(t, dt)are standard Wiener process increments with correlation matrix specified bycorr(t)orrho(t).x0, SDE parameters anddw(t, dt)should broadcast tovshape + (paths,).Parameters: - paths, vshape, dtype, steps, i0, info, getinfo, method
See
SDEclass documentation.- x0 : array-like
Initial condition.
- mu, sigma : array-like, or callable
SDE parameters.
- dw, corr, rho
Specification of stochasticity source of Wiener process increments. See
SDE.source_dwdocumentation.
Returns: - x : process
Once instantiated as
p,p(timeline)performs the integration along the given timeline, based on parameters of instantiation, and returns the resulting process.
See also
Attributes: - See SDE class documentation.
Methods
See SDE class documentation.