julia集 matlab代码,Julia集分形

我写了一个程序来生成Julia集分形。该程序还允许用户输入其值c或让程序生成一个随机值。代码如下:import pygame, sys, math, cmath, random

from pygame.locals import *

print("Julia set fractal generator")

custom = int(input("Do you want a custom set? Yes(1); No(-1): "))

if custom == -1:

c = complex((random.randint(-999,1000))/1000.0,(random.randint(-999,1000))/1000.0)

else:

a = float(input("Real?: "))

b = float(input("Imaginary?: "))

c = complex(a,b)

lim = 4

limn = -4

mul = 0

iteration_detail = 100

screen = pygame.display.set_mode((512,512),0,32)

pygame.display.set_caption("Julia set fractal generator")

def iterate (px_i,py_i,iters):

itnum = 1

z = complex(((px_i-256)/512.0)*4,((py_i-256)/512.0)*4)

while itnum <= iters:

if z.real >= lim or z.imag >= lim or z.real <= limn or z.imag <= limn:

break

z = z**2 + c

itnum += 1

return(z.real, z.imag, itnum)

def pixel_color_set (iterx, itery, iterations):

pixel_color = (0,0,0)

if iterx >= lim or itery >= lim or iterx <= limn or itery <= limn:

if iterations < 2:

pixel_color = (204,0,102)

elif iterations == 2:

pixel_color = (204,0,204)

elif iterations == 3:

pixel_color = (102,0,204)

elif iterations ==4:

pixel_color = (0,0,204)

elif iterations ==5:

pixel_color = (0,102,204)

elif iterations ==6:

pixel_color = (0,204,204)

elif iterations ==7:

pixel_color = (0,204,102)

elif iterations ==8:

pixel_color = (0,204,0)

elif iterations ==9:

pixel_color = (102,204,0)

return(pixel_color)

def draw_pixel (px, py, color):

return(screen.fill(color, ((px, py),(1, 1))))

while 1:

for event in pygame.event.get():

if event.type == QUIT:

pygame.quit()

sys.exit()

if event.type == KEYDOWN:

if event.key == K_UP:

mul = 0.1

elif event.key == K_DOWN:

mul = -0.1

if event.key == K_SPACE:

pygame.image.save(screen, "fractal.jpg")

if event.type == KEYUP:

if event.key == K_UP:

mul = 0

elif event.key == K_DOWN:

mul = 0

c += mul

ypxl = 0

while ypxl < 512:

xpxl = 0

while xpxl < 512:

ipxl = iterate(xpxl,ypxl,iteration_detail)

cpxl = pixel_color_set(ipxl[0], ipxl[1], ipxl[2])

draw_pixel(xpxl, ypxl, cpxl)

xpxl += 1

ypxl += 1

pygame.display.update()

代码确实有效,但并没有像预期的那样生成分形。例如这个分形:-

z = z**2 + c其中c等于

c = complex(-0.1, 0.651)

应该是这样的

bjzU7.png

但看起来是这样的

rzbq4.jpg

我的代码有什么问题?我也不能做一个缩放机制。。。如果有人帮忙,我将不胜感激。在

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值