Skip to content

Commit

Permalink
hyphenate Euler-Maruyama
Browse files Browse the repository at this point in the history
  • Loading branch information
mattja committed Oct 26, 2016
1 parent b8f0de3 commit 36d5956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ These work with scalar or vector equations. They will choose an algorithm for yo

specific algorithms:
--------------------
| ``itoEuler(f, G, y0, tspan)``: the Euler Maruyama algorithm for Ito equations.
| ``itoEuler(f, G, y0, tspan)``: the Euler-Maruyama algorithm for Ito equations.
| ``stratHeun(f, G, y0, tspan)``: the Stratonovich Heun algorithm for Stratonovich equations.
| ``itoSRI2(f, G, y0, tspan)``: the Rößler2010 order 1.0 strong Stochastic Runge-Kutta algorithm SRI2 for Ito equations.
| ``itoSRI2(f, [g1,...,gm], y0, tspan)``: as above, with G matrix given as a separate function for each column (gives speedup for large m or complicated G).
Expand Down
2 changes: 1 addition & 1 deletion sdeint/integrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
sdeint will choose an algorithm for you. Or you can choose one explicitly:
itoEuler: the Euler Maruyama algorithm for Ito equations.
itoEuler: the Euler-Maruyama algorithm for Ito equations.
stratHeun: the Stratonovich Heun algorithm for Stratonovich equations.
itoSRI2: the Roessler2010 order 1.0 strong Stochastic Runge-Kutta
algorithm SRI2 for Ito equations.
Expand Down

0 comments on commit 36d5956

Please sign in to comment.