File:Intermittency in logistic map.png

Page contents not supported in other languages.
This is a file from the Wikimedia Commons
From Wikipedia, the free encyclopedia

Intermittency_in_logistic_map.png(567 × 455 pixels, file size: 24 KB, MIME type: image/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.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

18 April 2023

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current21:09, 18 April 2023Thumbnail for version as of 21:09, 18 April 2023567 × 455 (24 KB)Cosmia NebulaUploaded while editing "Intermittency" on en.wikipedia.org
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata