We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b90e94d commit 21b2caaCopy full SHA for 21b2caa
docs/src/chapter1/forward_euler_fun.py
@@ -29,7 +29,7 @@ def f(t, u):
29
30
U0 = 1
31
T = 4
32
-N in 20
+N = 20
33
t, u = forward_euler(f, U0, T, N)
34
plt.plot(t, u, label=f'$\\Delta t$ = {T/N}')
35
plt.plot(t, np.exp(t), label='Exact')
0 commit comments