- /
-
MATLAB with random art
on 26 Oct 2021
- 36
- 105
- 1
- 0
- 216
figure('color','k')
text(0.,0.5,'MATLAB','FontSize',90,'Color','w')
axis off
I=frame2im(getframe(gcf));
I=flip(I);
[y,x]=find(I(:,:,1));
z=rand(size(x));
figure('color','k')
scatter(x,y,5,z,'filled','o')
colormap('turbo')
axis off