mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-07 11:37:36 +08:00
Upgrade to Python 3.13 (#11588)
This commit is contained in:
@ -26,7 +26,7 @@ def explicit_euler(
|
||||
... return y
|
||||
>>> y0 = 1
|
||||
>>> y = explicit_euler(f, y0, 0.0, 0.01, 5)
|
||||
>>> y[-1]
|
||||
>>> float(y[-1])
|
||||
144.77277243257308
|
||||
"""
|
||||
n = int(np.ceil((x_end - x0) / step_size))
|
||||
|
Reference in New Issue
Block a user