Skip to content

DeterministicIteratedMap not being exported properly #207

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
hinsley opened this issue Apr 26, 2024 · 1 comment
Closed

DeterministicIteratedMap not being exported properly #207

hinsley opened this issue Apr 26, 2024 · 1 comment

Comments

@hinsley
Copy link

hinsley commented Apr 26, 2024

Describe the bug
DeterministicIteratedMap does not seem to be getting exported properly. From the MWE, I get the following error:

ERROR: UndefVarError: `DeterministicIteratedMap` not defined
Stacktrace:
 [1] top-level scope
   @ Untitled-1:13

Minimal Working Example

using DynamicalSystems

function f_rule(u, p, n)
    x = u[1]
    a = p[1]
    fx = min(a*x^2+x, a*x^2-(2*a+1)*x+a+1)
    return fx
end

u0 = [0.5]
p0 = [1]

f = DeterministicIteratedMap(f_rule, u0, p0)

Package versions

DynamicalSystems v2.3.2
Julia v1.10

@Datseris
Copy link
Member

You reported DynamicalSystems v2.3.2 but latest stable version is 3.3.11. You're years behind in the version. When visiting the docs please look in the bottom left of the page to see the version

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants