diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-10-02 19:23:35 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-02 19:23:35 -0600 |
commit | 2995e6a9cfb7f38f1ab8ec102cc301d3ceba480e (patch) | |
tree | 481ac8b2d2ae7e3ee9eada16e42cb57e00ab953d | |
parent | 04c43f177dcf156ab85118898d30870a38df70cc (diff) | |
parent | 6979040dd38feb9216ac68521bd11f944449a426 (diff) | |
download | numpy-2995e6a9cfb7f38f1ab8ec102cc301d3ceba480e.tar.gz |
Merge pull request #9812 from xoviat/patch-1
DOC: update scipy.integrate recommendation
-rw-r--r-- | doc/source/user/numpy-for-matlab-users.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/user/numpy-for-matlab-users.rst b/doc/source/user/numpy-for-matlab-users.rst index 66641eed3..00a627ac4 100644 --- a/doc/source/user/numpy-for-matlab-users.rst +++ b/doc/source/user/numpy-for-matlab-users.rst @@ -269,11 +269,11 @@ General Purpose Equivalents - Distance between 1 and the nearest floating point number. * - ``ode45`` - - ``scipy.integrate.ode(f).set_integrator('dopri5')`` + - ``scipy.integrate.solve_ivp(f)`` - integrate an ODE with Runge-Kutta 4,5 * - ``ode15s`` - - ``scipy.integrate.ode(f).set_integrator('vode', method='bdf', order=5)`` + - ``scipy.integrate.solve_ivp(f, method='BDF')`` - integrate an ODE with BDF method Linear Algebra Equivalents |