• Remix
  • Share
  • New Entry

on 27 Oct 2022
  • 3
  • 19
  • 0
  • 1
  • 273
%Peacock
%Z=-1.1+.020i;
close all;
rng(2022)
Z=rand+rand*i; %z=0+0i
L=100; %lop
m=1e3;
cx=0.6;
cy=-0.2;
S=5; % Lg zm out
x=linspace(cx-S,cx+S,m);
y=linspace(cy-S,cy+S,m);
[X,Y]=meshgrid(x,y);
C=X+i*Y;
for k=1:L;
Z=-conj(Z).^(expm1(Z)*7)+C;
W=exp(-abs(Z));
end
pcolor(flipud(W'));
shading interp
axis([0 800 300 600]);
axis equal off
d=copper(5);e=autumn(100);
Remix Tree