Skip to content

Instantly share code, notes, and snippets.

@WashingtonGold
Created May 22, 2020 17:37
Show Gist options
  • Save WashingtonGold/ad4b770e352f208632da661981b893bc to your computer and use it in GitHub Desktop.
Save WashingtonGold/ad4b770e352f208632da661981b893bc to your computer and use it in GitHub Desktop.
def display(width=3000, height=1800,cmap='magma',iterations=256):
pixels = mandelbrot_set(width, height, iterations=iterations)
plt.figure(figsize=(20,10))
plt.axis('off')
plt.imshow(pixels, cmap='magma')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment