summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-10-02 19:23:35 -0600
committerGitHub <noreply@github.com>2017-10-02 19:23:35 -0600
commit2995e6a9cfb7f38f1ab8ec102cc301d3ceba480e (patch)
tree481ac8b2d2ae7e3ee9eada16e42cb57e00ab953d
parent04c43f177dcf156ab85118898d30870a38df70cc (diff)
parent6979040dd38feb9216ac68521bd11f944449a426 (diff)
downloadnumpy-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.rst4
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