File:HenonMap.svg

Uploaded by Shiyu Ji
Upload date 2016-11-07T09:38:16Z
MIME type image/svg+xml
Dimensions 720 × 540 px
File size 9.1 MB

Summary

Description
English: Henon Attractor Generated with Mathematica.
Date
Source Own work based on: HenonMapImage.png
Author Shiyu Ji
SVG development
InfoField
 The SVG code is valid.
 This oversized trigonometry was created with Matplotlib.

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.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

7 November 2016

9,529,091 byte

image/svg+xml

5099c0ebbc50c2c4a40c08cbd07497db30aa6d20

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