Skip to content

Commit

Permalink
modify result in new example
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFlamm committed Jan 29, 2019
1 parent 5e33093 commit dd9eba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/integrate/_ivp/ivp.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ def solve_ivp(fun, t_span, y0, method='RK45', t_eval=None, dense_output=False,
[0.00000000e+00 9.99900010e-05 1.09989001e-03 1.10988901e-02
1.11088891e-01 1.11098890e+00 1.11099890e+01 4.00000000e+01]
>>> print(sol.sol(sol.t_events[1][0]))
[1.00000000e+02 1.77635684e-15]
[100. 0.]
"""
if method not in METHODS and not (
inspect.isclass(method) and issubclass(method, OdeSolver)):
Expand Down

0 comments on commit dd9eba9

Please sign in to comment.