Skip to content

DeterministicIteratedMap not being exported properly #207

Closed
@hinsley

Description

@hinsley

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions