Skip to content
#

dynamical-systems

Here are 325 public repositories matching this topic...

LianGentleWind
LianGentleWind commented Apr 21, 2022

The example is simple:

using DynamicalSystems

function route(dx, x, p, t)
    dx[1] =  1im * ( p[1] * x[1] - 2 * real(x[2]) * x[1] - 0.5) - 0.05 * x[1]
    dx[2] = -1im * (0.75 * abs(x[1])^2 + x[2]) - 0.0005* x[2]
end

ds = DiscreteDynamicalSystem(route, ComplexF64[0, 0], [1])

Was trying to define a Dynamical system. And:

ArgumentError: Cannot create a dual over scalar t

Improve this page

Add a description, image, and links to the dynamical-systems topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the dynamical-systems topic, visit your repo's landing page and select "manage topics."

Learn more