using DifferentialEquations
f(u,p,t) = 1.01*u
= 1/2
u0 = (0.0,1.0)
tspan = ODEProblem(f,u0,tspan)
prob = solve(prob, Tsit5(), reltol=1e-8, abstol=1e-8)
sol
using Plots
plot(sol,linewidth=5,title="Solution to the linear ODE with a thick line",
="Time (t)",yaxis="u(t) (in μm)",label="My Thick Line!") # legend=false
xaxisplot!(sol.t, t->0.5*exp(1.01t),lw=3,ls=:dash,label="True Solution!")
Paquetes de cálculo científico
SciML
SciML is the combination of scientific computing techniques with machine learning