mandli / intro-numerical-methods

Jupyter notebooks and other materials developed for the Columbia course APMA 4300
Creative Commons Attribution 4.0 International
278 stars 398 forks source link

error in 09_ODE_ivp_part1 #36

Closed dragonyanglong closed 7 years ago

dragonyanglong commented 7 years ago

In "Example: 4-stage Runge-Kutta Method"

y_2 = u_4[n] + 0.5 * delta_t * f(t_n + 0.5 * delta_t, y_1)
y_3 = u_4[n] + 0.5 * delta_t * f(t_n + 0.5, y_2)
mandli commented 7 years ago

Fixed, thanks!