Skip to content

Commit 5c1fb52

Browse files
committed
added reference to issue
1 parent 90b2b06 commit 5c1fb52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pynumdiff/finite_difference/_finite_difference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _finite_difference(x, dt, num_iterations, order):
3333
x_hat = utility.integrate_dxdt_hat(dxdt_hat, dt=1) # estimate new x_hat by integrating derivative
3434
# We can skip dividing by dt here and pass dt=1, because the integration multiplies dt back in.
3535
# No need to find integration constant until the very end, because we just differentiate again.
36-
# Note that I also tried integrating with Simpson's rule here, and it seems to do worse.
36+
# Note that I also tried integrating with Simpson's rule here, and it seems to do worse. See #104
3737

3838
if order == 1:
3939
dxdt_hat[:-1] = np.diff(x_hat)

0 commit comments

Comments
 (0)