File:HenonMap.svg

Summary

Description
English: Henon Attractor Generated with Mathematica.
Date
Source Own work based on: HenonMapImage.png: 
Author Shiyu Ji
SVG development
InfoField

Python/Matplotlib Code

# An Euler method based simulation of the Henon Map.
import matplotlib.pyplot as pl
import numpy as np

t_final = 50000
a, b = 1.4, 0.3
ax = pl.figure().add_subplot(111)

x, y = 0.0, 0.0
for t in range(t_final):
    ax.scatter(x, y, .1, color='black')
    new_x = 1 - a*x*x + y
    new_y = b*x
    x, y = new_x, new_y

pl.axis('off')
pl.show()

Licensing

Shiyu Ji, the copyright holder of this work, hereby publishes 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.
Attribution:
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#HenonMap.svgCategory:Self-published work
Category:Fractal dimension between one and two Category:Henon map
Category:CC-BY-SA-4.0 Category:Fractal dimension between one and two Category:Henon map Category:Large SVG files Category:Self-published work Category:Valid SVG created with Matplotlib