File:Logistic map approaching the scaling limit.webm

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file(WebM audio/video file, VP9, length 12 s, 3,000 × 600 pixels, 440 kbps overall, file size: 619 KB)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
English:
WEBM development
InfoField
 
This plot was created with Matplotlib.
Source code
InfoField

Python code

import numpy as np
import matplotlib.pyplot as plt

def logistic_map(x, r):
    return r * x * (1 - x)

def function_iter(f, n, x, **kwargs):
    for _ in range(n):
        x = f(x, **kwargs)
    return x

import imageio.v3 as iio
import os
from natsort import natsorted
import moviepy.editor as mp

def export_to_video(dir_paths, fps=12):
    for dir_path in dir_paths:
        file_names = natsorted((fn for fn in os.listdir(dir_path) if fn.endswith('.png')))

        # Create a list of image files and set the frame rate
        images = []

        # Iterate over the file names and append the images to the list
        for file_name in file_names:
            file_path = os.path.join(dir_path, file_name)
            images.append(iio.imread(file_path))

        filename = dir_path[2:]
        iio.imwrite(f"{filename}.gif", images, duration=1000/fps, rewind=True)
        clip = mp.ImageSequenceClip(images, fps=fps)
        clip.write_videofile(f"{filename}.mp4")
    return

from tqdm import tqdm
import os

r_min, r_max = 3, 3.56994567
delta = 4.6692
frames_per_delta = 24
total_deltas = 6
frames = frames_per_delta * total_deltas
scaling_factor = delta**(1/frames_per_delta)
rs = r_max + (r_min - r_max) / (scaling_factor ** np.array(range(frames)))

for i, r in tqdm(enumerate(rs)):
    highest_exponent = 9
    fig, ax = plt.subplots(figsize=(30, 6))

    x_values = np.linspace(0, 1, 100000)
    y_values = x_values
    last_n_iter = 0

    for n in range(highest_exponent):
        n_iter = 2**n
        y_values = function_iter(logistic_map, n_iter - last_n_iter, y_values, r=r)
        last_n_iter = n_iter

        ax.plot(x_values, y_values, label=f'iteration = {2**n}', alpha=0.2, color='blue')

    ax.hlines(0.5, 0, 1, linewidth=0.3, alpha=0.8, linestyle='--', color='black')

    fig.suptitle(f'Up to {2**(highest_exponent-1)} iterates of the Logistic map with r = {r}',y=1.0)
    plt.tight_layout()
    
    dir_path = "./logistic"
    if not os.path.exists(dir_path):
        os.makedirs(dir_path)

    fig.savefig(f"{dir_path}/{i}.png")
    plt.close()
export_to_video(["./logistic"], fps=12)
Date
Source Own work
Author Cosmia Nebula

Licensing[edit]

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

File history

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

Date/TimeThumbnailDimensionsUserComment
current00:41, 7 April 202412 s, 3,000 × 600 (619 KB)Cosmia Nebula (talk | contribs)Uploaded own work with UploadWizard

There are no pages that use this file.

Transcode status

Update transcode status
Format Bitrate Download Status Encode time
VP9 1440P 1.09 Mbps Completed 00:41, 7 April 2024 15 s
Streaming 1440p (VP9) 1.09 Mbps Completed 00:41, 7 April 2024 17 s
VP9 1080P 467 kbps Completed 00:41, 7 April 2024 13 s
Streaming 1080p (VP9) 467 kbps Completed 00:41, 7 April 2024 12 s
VP9 720P 223 kbps Completed 00:41, 7 April 2024 7.0 s
Streaming 720p (VP9) 223 kbps Completed 00:41, 7 April 2024 7.0 s
VP9 480P 105 kbps Completed 00:41, 7 April 2024 6.0 s
Streaming 480p (VP9) 105 kbps Completed 00:41, 7 April 2024 6.0 s
VP9 360P 52 kbps Completed 00:41, 7 April 2024 5.0 s
Streaming 360p (VP9) 51 kbps Completed 00:41, 7 April 2024 5.0 s
VP9 240P 23 kbps Completed 00:41, 7 April 2024 3.0 s
Streaming 240p (VP9) 23 kbps Completed 00:41, 7 April 2024 5.0 s
WebM 360P 62 kbps Completed 00:41, 7 April 2024 3.0 s
Streaming 144p (MJPEG) 433 kbps Completed 00:41, 7 April 2024 2.0 s

File usage on other wikis

The following other wikis use this file:

Metadata