From 9a81219da98229859ec0beeca7638444fda74126 Mon Sep 17 00:00:00 2001 From: "Velimir (monty) Vesselinov" Date: Thu, 25 Jul 2024 14:08:38 -0600 Subject: [PATCH] ode --- examples/ode/ode.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ode/ode.jl b/examples/ode/ode.jl index 4b719a35..b204cedb 100644 --- a/examples/ode/ode.jl +++ b/examples/ode/ode.jl @@ -42,7 +42,7 @@ Mads.madsinfo("Solve ODE ...") times = collect(0:.1:100) initialconditions = [1.,0.] prob = OrdinaryDiffEq.ODEProblem(funcosc, initialconditions, (0.0,100.0)) -sol = OrdinaryDiffEq.solve(prob,Tsit5(), saveat=times) +sol = OrdinaryDiffEq.solve(prob, Tsit5(); saveat=times) ys = convert(Array,sol) # draw initial solution