sdepy.merton_jumpdiff_SDE.init¶
-
merton_jumpdiff_SDE.init(t, out_x, x0=1.0)¶ Set initial conditions for SDE integration.
Parameters: - t : float
Time point at which initial conditions should be imposed.
- out_x : array
Array, shaped
wshape + (paths,), where initial conditions are to be stored.- init_args : zero or more arrays, as keyword arguments
Initialization parameters, as implied by the
initmethod signature. Passed upon instantiation of theSDEclass as array-like, these parameters are served to theinitmethod converted to arrays vianp.asarray.
Notes
The default implementation has a single
x0parameter, and setsout_x[...] = x0.