• Remix
  • Share
  • New Entry

on 20 Oct 2021
  • 8
  • 151
  • 0
  • 0
  • 184
% Unknown pleasures - album cover
% A. Cuadra - 20 Oct 2021
figure('Color','k');
hold on;axis off;
x=linspace(-9,13);
y=4e3;% y0 - initial position
for i=1:80% 80 number of lines
s=randi([1,2]);
n=.04*rand(1,1e2)+.4/s*exp(-(x-randi([1,4])).^2/2/s^2);%noise vector + normal pdf
patch(x,y+n*9e2,'k')% fill the gap in black
plot(x,y+n*9e2,'w')% plot line
y=y-5e1;% move y axis
end
Remix Tree