- /
-
Distant Stars
on 21 Oct 2022
- 1
- 9
- 1
- 0
- 260
col=9; %Courtesy Mandel Ape MATLAB File Exchange
m=2000; %points, resolution
r=randn(m)*0.1;
Z=zeros(m);
x=-.5
y=+.3;
l=2.2; %L>2 is Zoom.out
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:col;
Z=conj(Z).^(cosh(Z))+C^2; %Find Ape in the Math jungle
E=-2i*exp(-abs(Z));
ESC=abs(E);
end
pcolor(rot90(ESC)); %Turn 90deg
%colormap hot %make face red
figure(1)
% try copper seriou looking
axis square off
shading interp
colormap(winter)