- /
-
Shock Wave
on 22 Oct 2021
- 10
- 21
- 6
- 0
- 280
%shock fractal
l=@linspace;
n=1;
m=200; %24000 out of memory
L=.35; %L=2
x=l(.2-L,L,m); % x=[-5 5]
y=l(-L,L,m); %y=[-5 5]
[X,Y]=meshgrid(x,y);
Z=zeros(m);
C=X+i*Y;
Z=atanh(sqrt(((C.^(sqrt(asinh(tan(log10(((asin(C.^(tan(((conj((Z)+C.^2))+C.^2)^n)))).^(asin(C.^(tan(((conj((Z)+C.^2))+C.^2).^n))))).^n)))))).^C)+C.^2)); %(x:-5/+5, y:-5/+5)
%W=abs(Z); %
pcolor(abs(Z)); %L
shading interp
colormap(hot(99))