The Runge-Kutta methods need to advance in small steps, 5
is not a small step. Try setting N to 1000.0
instead (the decimal is to make sure that (b-a)/N != 0
).
solved Overflow error in Python program
The Runge-Kutta methods need to advance in small steps, 5
is not a small step. Try setting N to 1000.0
instead (the decimal is to make sure that (b-a)/N != 0
).
solved Overflow error in Python program