sdepy.wiener_SDE.let¶
-
wiener_SDE.let(t, out_x, x)¶ Store the value of the integrated process at time point
tbelonging to the requested output timeline.Parameters: - t : float
Time point to which the integration result
xrefers.- out_x : array
Array, shaped
xshape + (paths,), where the resultxis to be stored.- x : array
Integration result at time
t, shapedwshape + (paths,)
Notes
The default implementation sets
out_x[...] = x.In case
xshape != wshape, this method should operate as needed in order to store inout_xa value broadcastable to its shape (e.g. it might store inout_xonly some of the components ofx).xshould be treated as read-only.