Python Forum
Iteration Inverse Method
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Iteration Inverse Method
#1

Hello, I'm studying the Julia set of a complex polynomial function P. One method for to produce its Julia set, consist in select one point z of its Julia set, and calculate the inverse iterates P^-k(z). This is the iteration inverse Method. I was trying to make a program for produce computer images by this method, but I'm learning to program python. This is the program which i create, but it's wrong and I don't know how correct it.

def resuelve(a):
    y=sqrt(a+0.285+0.01j)
    return [-y,y]
    
def iteration(a):
    xs=[a]
    ys=[]
    iter=1
    while iter <3:
        iter=iter+1
        xs=xs+ys
        for i in range((iter-1)**2,iter**2-1):
            ys=ys+resuelve(xs[i])
    return xs
Furthermore, I don't know to plot a list in python. Could yo help me please?. Thank in advance.
Reply


Messages In This Thread
Iteration Inverse Method - by antoniomancera - Nov-09-2017, 05:58 PM
RE: Iteration Inverse Method - by heiner55 - Nov-11-2017, 03:09 PM
RE: Iteration Inverse Method - by antoniomancera - Nov-12-2017, 11:01 PM
RE: Iteration Inverse Method - by heiner55 - Nov-13-2017, 01:38 PM
RE: Iteration Inverse Method - by antoniomancera - Nov-13-2017, 04:32 PM
RE: Iteration Inverse Method - by heiner55 - Nov-18-2017, 06:45 AM
RE: Iteration Inverse Method - by antoniomancera - Nov-23-2017, 11:36 PM
RE: Iteration Inverse Method - by heiner55 - Nov-24-2017, 09:52 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020