• Remix
  • Share
  • New Entry

on 30 Oct 2021
  • 5
  • 92
  • 0
  • 0
  • 251
% I'm just trying to understand the Bosten functions. It makes beautiful
% results.
a=500;
b=-100j;
X=-180:.72:179.5;
colormap(flip(bone))
p=@randi;
r=ones(a);
r(rand(500)>.98)=.8;
r=r.*abs((X-b)+(X'-b)*j);
image(r)
hold
Current plot held
s=ones(a);
g=s;
g(r>160)=0;
for k=1:60
c=1E4*abs(ifft2(r.^-1.*cos(7*rand(a))));
f=c.*g;
image(p(210).*s,'AlphaData',rescale(f,0,1))
end
camva(4)
Remix Tree