- /
 - 
        
MATRIX Style Falling 1
 
        on 6 Oct 2021
        
        
 
    - 15
 - 120
 - 2
 - 0
 - 226
 
%Matrix style any text
s ='ME LOVE MATLAB TShirt'
figure('Color','k')
axes('Position',[0 0 1 1])
rng(0)
for j=1:100
    x = rand;
    i = randi(12,1,randi(81));
    n = numel(i);
    for k=1:n
        y = 1-.01*k;
        c = k/n;
        t = text(x,y,s(i(k)));
t.FontSize = 9;
t.Color = [0 c 0];
%t = text(x,y,s(i(k)));
%t.FontSize = 6;
%t.Color = [c c c];
    end
end
axis off


