File:Feigenbaum tree with bias.gif

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

Feigenbaum_tree_with_bias.gif(400 × 400 pixels, file size: 255 KB, MIME type: image/gif, looped, 100 frames, 10 s)

Summary

Description Logistic Map with Bias & Feigenbaum tree. For higher resolution: click here
Date
Source Own work
Author Damodar Rajbhandari

Source code in Python 3.x (in Jupyter Notebook)

  

# Author: Damodar Rajbhandari (2023)

%reset -f

%matplotlib notebook

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import rc
from matplotlib.animation import FuncAnimation
from IPython.display import clear_output
from IPython.display import Image

plt.rcParams.update({
    "text.usetex": True,
    "font.family": "Computer Modern Roman",
    "font.size": 24,
})

n_dots = 1_000_000  # total number of dots
k = np.linspace(0.0, 4.0, n_dots)
iterations = 100

fig = plt.figure(figsize=(20, 15))
ax = plt.axes()
ax.set_xlim(0.0, 4.0)
ax.set_ylim(0.0, 1.0)

rc('animation', html='html5')

w = 1.5  # \omega bias setting to 1.5

def animate(i):
  plt.cla()
  ax.set_title(r"Feigenbaum Tree with bias $\omega$; $x^{(k)}_{n + 1} = \frac{k x^{(k)}_{n}(1 - x^{(k)}_{n}) + \omega x^{(k)}_{n}}{1 + \omega}$ for $\omega = 1.5$, $n= $"+" {}".format(i +1), fontsize=24)
  x = np.random.uniform(0.0, 1.0, n_dots)
  for _ in range(i + 1): 
    x = (k * x * (1 - x) + w * x)/(1 + w)
  
  ax.plot(k, x, '.k', markersize=.04)
  ax.set(xlabel=r'$k$', ylabel=r'$x^{(k)}_{n}$')  

  print("Done iteration = {}".format(i))
  clear_output(wait=True)

fig = FuncAnimation(fig, animate, frames=iterations, interval=300, blit=True)
fig.save('feigenbaum_tree_with_bias.gif', writer='imagemagick', fps=10)

with open('feigenbaum_tree_with_bias.gif','rb') as f:
    display(Image(data=f.read(), format='png'))

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

Feigenbaum Tree with bias

Items portrayed in this file

depicts

9 February 2023

image/gif

File history

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

Date/TimeThumbnailDimensionsUserComment
current03:56, 9 February 2023Thumbnail for version as of 03:56, 9 February 2023400 × 400 (255 KB)Drherelower down the resolution to 400x400
03:41, 9 February 2023Thumbnail for version as of 03:41, 9 February 20232,000 × 1,500 (2.09 MB)Drherecompressed the file size
16:11, 8 February 2023Thumbnail for version as of 16:11, 8 February 20232,000 × 1,500 (6.35 MB)DrhereUploaded own work with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata