plotOrbitDiagram: Orbit diagram.

Description Usage Arguments Value Examples

Description

Orbit diagram.

Usage

1
2
plotOrbitDiagram(map, from, to, steps = 100, n.iter = 500, n.save = 200,
  x0 = runif(1), col = rgb(1, 0, 0, alpha = 0.2), ...)

Arguments

map

A function with two inputs (value and parameter) that describes the map.

from

The lower bound of the parameter value.

to

The upper bound of the parameter value.

steps

The number of steps between from and to. Defaults to 100.

n.iter

The number of iterations for each orbit. Defaults to 500.

n.save

How many iterations are saved for each orbit? Defaults to 200.

x0

Initial value. Defaults to runif(1).

col

The color of the diagram. Defaults to rgb(1, 0, 0, alpha = 0.2).

...

Additional inputs for plotting.

Value

None

Examples

1
2
plotOrbitDiagram(function(x, r) r * sin(pi * x), 0.6, 1, 1000, 800, 500)
plotOrbitDiagram(mapLogistic, 3.2, 4, 500)

btamasi/map1d documentation built on May 13, 2019, 8:16 a.m.