• Remix
  • Share
  • New Entry

on 14 Oct 2021
  • 3
  • 14
  • 0
  • 0
  • 212
x=fft(eye(512));
y=x;
for i=1:512
a=1.28-25e-4*i;
b=1e-4*i^0.125;
y(i,1:256)=a*x(i,1:256)*exp(-1j*i^b);
y(i,257:512)=a*x(i,257:512)*exp(1j*b^i);
end
imshow(real(sqrt(real(y))),'Interpolation','bilinear');
colormap('jet')
axis off
Remix Tree