From 621f9cfd898652cea8f754db896c8fbd0e743759 Mon Sep 17 00:00:00 2001 From: albavcl Date: Thu, 16 Feb 2023 19:12:19 -0600 Subject: [PATCH] comentario en RK4 --- rk4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rk4.py b/rk4.py index 206409b..03288ad 100644 --- a/rk4.py +++ b/rk4.py @@ -1,5 +1,5 @@ import numpy as np - +#Metodo para resolver ecuaciones diferenciales def rungek4(fun, t, z0): nt = len(t) nz = len(z0)