• Remix
  • Share
  • New Entry

on 17 Oct 2022
  • 10
  • 29
  • 0
  • 1
  • 268
% Remixing this entry with a technique used by Jenny Bosten
%presets
r=1500;
f=13;
t=1.5;
Z=0;
s=540:960;
%for improved speed, do the calculation on the gpu
e=linspace(-.0,1.3,1.3*r);
i=linspace(-.5,.5,r).*i;
[x,y]=meshgrid(e,i);
M=x+y;
%iterate
for p=1:f
Z=tan(((Z).^t)+(M));
end
f=[];
for k=s
f=[f;circshift(Z(k,:),randi([-7,7]))];
end
imshow([real(f);real(Z(s,:));real(f)],'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])
Remix Tree
Load full remix tree