Taneli Tolppanen
Results
1
issues of
Taneli Tolppanen
Here is the code: ``` using DifferentialEquations function f(du,u,p,t) du[1] = u[1] end function affect!(integrator) #print(typeof(integrator.u)) integrator.u = [0.0, 1.0] end function main() x₀ = [1.0, 2.0] prob = ODEProblem(f,...