• Remix
  • Share
  • New Entry

on 24 Oct 2021
  • 8
  • 6
  • 1
  • 0
  • 272
close all; clear;
r=9; %#hideout
n=2; %n
m=400;
Z=zeros(m);
x=-1 %
x = -1
y=0; % left
l=2; %L
xx=linspace(x-l,x+l,m);
yy=linspace(y-l,y+l,m);
[X,Y]=meshgrid(xx,yy);
C=X+i*Y;
for k=1:r;
Z=Z./sin(n.^C); %ABSTRACT COLOR
Z=tanh(asinh((exp((sinh((log(acosh((Z.^3))).^C)) )).^3)))*C; %zeta ball
end
%W=exp(-abs(Z)); %jump1
W=abs(Z); %jump2
%pcolor(W);
pcolor(rot90(W)); %Turn
axis square
%axis off
shading interp;
colormap(prism(22))
%b=bone; fb=flip(bone);
Remix Tree