Skip to content

Commit

Permalink
Fixed sphinx warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Aug 18, 2020
1 parent e12dae6 commit 6e847a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def propagate(self, time, sigmapts, modelfct):
Time :math:`t` which is passed on to the modelfunction.
sigmapts : np.ndarray, shape=(2 N+1, N)
Sigma points (N is the spatial dimension of the dynamic model)
modelfct : callable, signature=(t, x, **kwargs)
modelfct : callable, signature=(t, x, \\**kwargs)
Function through which to propagate
Returns
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ class LinearSDEModel(continuousmodel.ContinuousModel):
Parameters
----------
driftmatrixfct : callable, signature=(t, **kwargs)
driftmatrixfct : callable, signature=(t, \\**kwargs)
This is F = F(t). The evaluations of this function are called
the drift(matrix) of the SDE.
Returns np.ndarray with shape=(n, n)
forcfct : callable, signature=(t, **kwargs)
forcfct : callable, signature=(t, \\**kwargs)
This is u = u(t). Evaluations of this function are called
the force(vector) of the SDE.
Returns np.ndarray with shape=(n,)
dispmatrixfct : callable, signature=(t, **kwargs)
dispmatrixfct : callable, signature=(t, \\**kwargs)
This is L = L(t). Evaluations of this function are called
the dispersion(matrix) of the SDE.
Returns np.ndarray with shape=(n, s)
Expand Down

0 comments on commit 6e847a5

Please sign in to comment.