码迷,mamicode.com
首页 > 其他好文 > 详细

z = z*z + c的分型图如何画

时间:2019-06-27 14:56:50      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:width   gre   i+1   pre   图片   code   代码   height   space   

使用python的图形库。

环境:conda+jupyter notebook

代码如下:

import numpy as np
from PIL import Image
from numba import jit
MAXITERS = 200
RADIUS = 100

@jit
def color(z, i):
    v = np.log2(i+1-np.log2(np.log2(abs(z))))/5
    if v < 1.0:
        return v**4, v**2.5, v
    else:
        v = max(0, 2-v)
        return v, v**1.5, v**3

@jit
def iterate(c):
    z = 0j
    for i in range(MAXITERS):
        if z.real*z.real +z.imag*z.imag > RADIUS:
            return color(z, i)
        z = z*z + c
    return 0, 0, 0

def main(xmin, xmax, ymin, ymax, width, height):
    x = np.linspace(xmin, xmax, width)
    y = np.linspace(ymax, ymin, height)
    z = x[None, :] +y[:, None]*1j
    red, green, blue = np.asarray(np.frompyfunc(iterate, 1, 3)(z)).astype(np.float)
    img = np.dstack((red, green, blue))
    Image.fromarray(np.uint8(img*255)).save(mandelbrot.png)
    
main(-2.1, 0.8, -1.16, 1.16, 1200, 960)

运行结果:

技术图片

z = z*z + c的分型图如何画

标签:width   gre   i+1   pre   图片   code   代码   height   space   

原文地址:https://www.cnblogs.com/bugutian/p/11096859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!