2.4.3.10. sdepy.SDE.result¶
-
SDE.result(tt, xx)[source]¶ Compute the integration output.
Parameters: - tt : array
Output integration timeline.
- xx : array
Integration result, shaped
tt.shape + xshape + (paths,).
Returns: - result
Final result, returned to the user.
Notes
The default implementation returns
sdepy.process(t=tt, x=xx). In casevshape != xshape, this method should operate as needed in order to return a process with values shaped asvshape(e.g. it might return a function of the components ofxx).