返回列表 回复 发帖
怪1.jpg
怪,GSP中图没有8个小圆饼环绕小M,而UF中有,不明所以了。
静极光通达,寂照含虚空,
找到原因了,原来是阀值的问题。
11.jpg
7.jpg
静极光通达,寂照含虚空,
12.jpg
静极光通达,寂照含虚空,
M201608201639{
;
; Generic Julia set.
;
init:

  c =3*#pixel
  z=-1.663892103
loop:
  z0=z
  z =(1-z^2)/(z-z^2*sin(z)) +c
  z =(1-z^2)/(z-z^2*sin(z)) +c
bailout:
  |z|<=23&&|z-z0|>=0.00001
default:
  title = " M201608201639"
  helpfile = "Uf*.chm"
  helptopic = "Html\formulas\standard\julia.html"
$IFDEF VER50
  rating = recommended
$ENDIF
    param bailout
    caption = "Bailout value"
    default = 0.00001
    min = 0.0

$IFDEF VER40
    exponential = true
$ENDIF
    hint = "This parameter defines how soon an orbit bails out while \
            iterating. Larger values give smoother outlines; values around 4 \
            give more interesting shapes around the set. Values less than 4 \
            will distort the fractal."
  endparam
switch:
  type = "Mandelbrot"
  power = power
  bailout = bailout
}
静极光通达,寂照含虚空,
132.jpg
静极光通达,寂照含虚空,
#14楼GSP扫图一付。
调色很有趣的,胡乱调,觉得此张图感觉良好。
131.jpg
定位:0.90295242816667952+0 i
放大:16710923  迭代200
111.jpg
静极光通达,寂照含虚空,
15# 柳烟
用GSP多算几个零点,先用maple求出函数的一阶导数,再在GSP中作出该函数,找出x轴交点,再用高精坐标工具找出函数的零点。
函数零值点.gsp (120.35 KB)
静极光通达,寂照含虚空,
20# swgydt
Chaosbrot (Julia)的制作视频.gsp (33.59 KB)
这个分形与z^2+c的J集造法一致。我新造了视频文件,地址:
视频文件地址

以下是几年前整的旧视频
静极光通达,寂照含虚空,
这是新视频中用的工具,有的是我整的工具,有的是本坛老师整的。
复分形TOOLS2016更新.rar (121.33 KB)
静极光通达,寂照含虚空,
M201608211034{
;
; Generic Julia set.
;
init:

  c =3*#pixel
  z=-2.735865250I
loop:
  z0=z
  z =(1-z^2)/(z-z^2*tan(z)) +c
  z =(1-z^2)/(z-z^2*tan(z)) +c
bailout:
  |z|<=12&&|z-z0|>=0.00003
default:
  title = " M201608211034"
  helpfile = "Uf*.chm"
  helptopic = "Html\formulas\standard\julia.html"
$IFDEF VER50
  rating = recommended
$ENDIF
    param bailout
    caption = "Bailout value"
    default = 0.00001
    min = 0.0

$IFDEF VER40
    exponential = true
$ENDIF
    hint = "This parameter defines how soon an orbit bails out while \
            iterating. Larger values give smoother outlines; values around 4 \
            give more interesting shapes around the set. Values less than 4 \
            will distort the fractal."
  endparam
switch:
  type = "Mandelbrot"
  power = power
  bailout = bailout
}
静极光通达,寂照含虚空,
返回列表