File:LogisticMapOrbitDiag P3Zoom.png
From Wikimedia Commons, the free media repository
Jump to navigation
Jump to search
Size of this preview: 800 × 450 pixels. Other resolutions: 320 × 180 pixels | 640 × 360 pixels | 1,024 × 576 pixels | 1,280 × 720 pixels | 2,560 × 1,440 pixels | 9,600 × 5,400 pixels.
Original file (9,600 × 5,400 pixels, file size: 2.71 MB, MIME type: image/png)
File information
Structured data
Captions
Summary
[edit]DescriptionLogisticMapOrbitDiag P3Zoom.png |
English: Produced by the following Python code adapted from Wikipedia article Logistic map:
import numpy as np import matplotlib.pyplot as plt preset = 5 saveFigure = True markerSize = 0.001 markerStyle = "," # . - point; , - pixel progressReportBlockLen = 1000 if preset == 1: # Complete diagram on the conventional range rInterval = (-0.1, 4.1) rResolution = 0.0005 mapIterationCount = 1000 lastMapIterationCountToPlot = 1000 startingIterationValue = 0.5 yLim = (-0.1, 1.1) fileName = "LogisticMapOrbitDiag.png" if preset == 2: # Complete diagram, including the negative r rInterval = (-2.1, 4.1) rResolution = 0.0005 mapIterationCount = 1000 lastMapIterationCountToPlot = 1000 startingIterationValue = 0.5 yLim = (-0.6, 1.6) fileName = "LogisticMapOrbitDiag_InclNegR.png" if preset == 3: # Zoom on the leftmost bifurcation region rInterval = (3.54, 3.5705) #3.571 rResolution = 0.000004 mapIterationCount = 500 #1000 lastMapIterationCountToPlot = 500 startingIterationValue = 0.5 yLim = (0.33, 0.9) fileName = "LogisticMapOrbitDiag_BifurcZoom.png" if preset == 4: # Complete diagram on the conventional range, skip early iterates rInterval = (-0.1, 4.1) rResolution = 0.0005 mapIterationCount = 10000 lastMapIterationCountToPlot = 1000 startingIterationValue = 0.5 yLim = (-0.1, 1.1) fileName = "LogisticMapOrbitDiag_SkipEarlyIter.png" progressReportBlockLen = 100 if preset == 5: # Zoom into the period-3 window rInterval = (3.825, 3.865) rResolution = 0.000005 mapIterationCount = 1000 lastMapIterationCountToPlot = 1000 startingIterationValue = 0.5 yLim = (0.1, 1.0) fileName = "LogisticMapOrbitDiag_P3Zoom.png" lims = np.zeros(mapIterationCount) fig, biax = plt.subplots() fig.set_size_inches(16, 9) itemCount = 0 for r in np.arange(rInterval[0], rInterval[1], rResolution): itemCount += 1 lims[0] = startingIterationValue for i in xrange(mapIterationCount - 1): lims[i + 1] = r * lims[i] * (1 - lims[i]) if itemCount % progressReportBlockLen == 0: print("Parameter values processed:", itemCount) biax.plot([r] * lastMapIterationCountToPlot, lims[(mapIterationCount - lastMapIterationCountToPlot):], "b.", markersize=markerSize, marker=markerStyle) biax.set(xlabel="c", ylabel="x", title="Logistic map - r * x (1 - x) - bifurcation diagram/orbit diagram" + "\n" "r resolution: " + str(rResolution) + ", iteration count: " + str(mapIterationCount) + ", last values to plot count: " + str(lastMapIterationCountToPlot)) biax.set_ylim(yLim[0], yLim[1]) if saveFigure: plt.savefig(fileName, dpi=600) else: plt.show() |
Date | |
Source | Own work |
Author | Dan Polansky |
Licensing
[edit]I, the copyright holder of this work, hereby publish it under the following license:
This file is licensed under the Creative Commons Attribution 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.
This media file is uncategorized.
Please help improve this media file by adding it to one or more categories, so it may be associated with related media files (how?), and so that it can be more easily found.
Please notify the uploader with {{subst:Please link images|File:LogisticMapOrbitDiag P3Zoom.png}} ~~~~ |
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 10:37, 9 February 2024 | 9,600 × 5,400 (2.71 MB) | Dan Polansky (talk | contribs) | Uploaded own work with UploadWizard |
You cannot overwrite this file.
File usage on Commons
There are no pages that use this file.
File usage on other wikis
The following other wikis use this file:
- Usage on en.wikiversity.org
Metadata
This file contains additional information such as Exif metadata which may have been added by the digital camera, scanner, or software program used to create or digitize it. If the file has been modified from its original state, some details such as the timestamp may not fully reflect those of the original file. The timestamp is only as accurate as the clock in the camera, and it may be completely wrong.
Horizontal resolution | 236.22 dpc |
---|---|
Vertical resolution | 236.22 dpc |
Software used |