Skip to content

Commit

Permalink
bad comment on aero/ODE
Browse files Browse the repository at this point in the history
  • Loading branch information
jgressier committed May 13, 2016
1 parent 01fe78d commit 6d30c0f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion aero/ODE.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def run_kut4(F,x,y,h):
while x < xStop:
h = min(h,xStop - x)
y = y + run_kut4(F,x,y,h)
259 7.3 RungeâKutta Methods
x = x + h
X.append(x)
Y.append(y)
Expand Down

0 comments on commit 6d30c0f

Please sign in to comment.