Advertisement
Guest User

lien

a guest
Oct 17th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. import math
  2. import numpy as np
  3. import matplotlib.pyplot as plt
  4.  
  5. def complexe(c,z0,n):
  6. return ((z0**2)+c)**n
  7.  
  8.  
  9.  
  10.  
  11. theta = np.linspace(0, 2*np.pi, 40)
  12. x = np.cos(theta)
  13. y = np.sin(theta)
  14. plt.plot(x, y)
  15. plt.axis("equal")
  16. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement