bifurcation
bifurcation
logistic_equation(x, r)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x
|
ndarray
|
Seed for the logistic equation |
required |
r
|
ndarray
|
Anchor for the logistic equation |
required |
Returns:
Type | Description |
---|---|
ndarray
|
Updated seed |
make_logistic_map(points, iterations)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
points
|
int
|
number of points for the seed and anchor |
required |
iterations
|
int
|
Number of times the map should be updated |
required |
Returns:
Type | Description |
---|---|
tuple
|
Updated values for the anchor and seed |
plot_map(points, iterations, clib=bool)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
points
|
int
|
Numbers of points for the seed and anchor |
required |
iterations
|
int
|
Number of times the map should be updated |
required |
animate_map(points, iterations)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
points
|
int
|
Number of points for the seed and anchor |
required |
iterations
|
int
|
Number of times the map should be updated |
required |