File:Intermittency in logistic map.png

Summary

Description
English: ```python

import numpy as np import matplotlib.pyplot as plt

def logistic_map(r, x):

   return r * x * (1 - x)

r = 3.8282 n_iter = 1000 x = np.zeros(n_iter) x[0] = 0.3

for n in range(1, n_iter):

   x[n] = logistic_map(r, x[n-1])

plt.plot(x, '.', markersize=2) plt.xlabel('Iteration') plt.ylabel('x') plt.title(f'Logistic map with r = {r}') plt.show()

```
Date
Source Own work
Author Cosmia Nebula

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Category:CC-BY-SA-4.0#Intermittency%20in%20logistic%20map.pngCategory:Self-published work
Category:Logistic map Category:Dynamical systems Category:Chaos theory Category:Created with Matplotlib
Category:CC-BY-SA-4.0 Category:Chaos theory Category:Created with Matplotlib Category:Dynamical systems Category:Logistic map Category:Self-published work