Skip to content
View ratwolfzero's full-sized avatar
😁
retired
😁
retired
  • School's out forever
  • Nuremberg, Germany
  • 23:53 (UTC +02:00)

Block or report ratwolfzero

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ratwolfzero/README.md
  • 👋 Hi my name is Ralf,
  • 👀 I’m interested in fractals, strange attractors, collatz-sequence... and programming in Julia, Python and Rust.
  • 🌱 I’m currently learning the Rust language. I am using Geany and VS code for MacOS.
  • 📫 How to reach me [email protected]

Pinned Loading

  1. hopalong_python hopalong_python Public

    Calculate and display the "Hopalong" attractor

    Python 1

  2. collatz_bigint collatz_bigint Public

    Calculate and display the Collatz sequence (3n+1 problem) for very large integers. Sequence is handled as vector in memory.

    Rust

  3. FFT FFT Public

    Demonstartion how to use Fast Fourier Transform (FFT) with Python

    Python

  4. Henon Henon Public

    Calculate and display the "Hénon" attractor

    Julia

  5. Hopalong Attractor for Python Extend... Hopalong Attractor for Python Extended Version: This version creates some statistics about image pixel hit count and plots it's distribution
    1
    import matplotlib.pyplot as plt
    2
    import numpy as np
    3
    from numba import njit
    4
    from math import copysign, sqrt, fabs
    5
    import time
  6. Hopalong Attractor for Python Basic ... Hopalong Attractor for Python Basic Version
    1
    import matplotlib.pyplot as plt
    2
    import numpy as np
    3
    from numba import njit
    4
    from math import copysign, sqrt, fabs
    5
    import time