- /
-
FFT50
on 10 Oct 2024
- 12
- 131
- 0
- 0
- 246
Artist:騒音のない世界(https://noiselessworld.net/)
drawframe(40)
function drawframe(ii)
n = 50;
a = fft(eye(n));
a = a(:);
persistent fig p
if isempty(fig) || ~isvalid(fig)
fig = figure;
plot(a,'Color',[.7 .7 .7])
hold on
p = plot(a(1),'r');
axis off
end
jj = mod(ii*25 + (0:25), length(a)) + 1;
set(p,'XData', real(a(jj)), 'YData', imag(a(jj)));
drawnow
end