diff options
author | xoviat <xoviat@users.noreply.github.com> | 2017-10-02 19:38:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-02 19:38:56 -0500 |
commit | 6979040dd38feb9216ac68521bd11f944449a426 (patch) | |
tree | 481ac8b2d2ae7e3ee9eada16e42cb57e00ab953d | |
parent | ff93d4dc25a979f28878a3f69eb246f16ef3d76e (diff) | |
download | numpy-6979040dd38feb9216ac68521bd11f944449a426.tar.gz |
DOC: update other MATLAB ode 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 1b9b787be..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.scipy.integrate.solve_ivp(f)`` + - ``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 |