I’m trying to express the recursion z_n= z_(n-1)^2 + c. Where z0 and c are complex numbers. So far I have:
z_n= z_(n-1)^2 + c
z0
c
for n in range(1,N): z=n**2+c
I know n does not represent z_(n-1) but I can’t figure out what does to make this work.
n
z_(n-1)
Aucun commentaire:
Enregistrer un commentaire