From b3d3e8ed59c66768793be702fffc5901eedc6e6b Mon Sep 17 00:00:00 2001 From: ethank5149 <46270278+ethank5149@users.noreply.github.com> Date: Mon, 25 May 2020 12:04:03 -0400 Subject: [PATCH] fixed typo --- odespy/solvers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/odespy/solvers.py b/odespy/solvers.py index af595d4..a59c923 100644 --- a/odespy/solvers.py +++ b/odespy/solvers.py @@ -1980,7 +1980,7 @@ def advance(self): def approx_Jacobian(f, u0, t0, h): """ - Compute approximate Jacobian of fucntion f at current point (u0,t0). + Compute approximate Jacobian of function f at current point (u0,t0). Method: forward finite difference approximation with step size h. Output: a two-dimensional array holding the Jacobian matrix.