Python不到10行的画Mandelbrot分形(Fractal)图

Python不到10行的画Mandelbrot分形(Fractal)图,第1张

Python不到10行的画Mandelbrot分形(Fractal)图

以前用VB,还有C++写了画Mandelbrot分形(Fractal)图的程序, 但代码都比较长。新学Python, 发现可以用非常段的代码就可以画出来, 而且速度很快, 分享如下:

import numpy as np
from functools import reduce
import matplotlib.pyplot as plt
x,y=np.ogrid[-2.2:0.8:200j,-1.3:1.3:200j]
c=x+y*1j
maxIt = 30 
z = reduce(lambda x, y: x**2 + c, [1] * maxIt, c)
plt.imshow(np.angle(z).T)
plt.show()

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3970222.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-10-21
下一篇 2022-10-21

发表评论

登录后才能评论

评论列表(0条)

保存