Skip to content

Instantly share code, notes, and snippets.

# Der folgende Python-Code basiert auf Vorschlägen von ChatGPT (OpenAI) und wurde von mir angepasst.
import numpy as np
import matplotlib.pyplot as plt # Darstellung Fraktal als Bild
#Funktion und Ableitung
def f(z):
return z**3 - 1
def df(z):
return 3*z**2