Skip to content

Instantly share code, notes, and snippets.

View SebastianM-C's full-sized avatar

Sebastian Micluța-Câmpeanu SebastianM-C

View GitHub Profile
Using
```julia
using StaticArrays
using Profile
using BenchmarkTools
using OrdinaryDiffEq
function lorenz(u,p,t)
du1 = 10.0*(u[2]-u[1])
du2 = u[1]*(28.0-u[3]) - u[2]