- /
-
MATRIX Style Falling - 我爱迈斯沃克
on 7 Oct 2021
- 10
- 44
- 0
- 0
- 228
%Matrix style any text
s ='我爱麦斯沃克'; % I love Mathwork.
figure('Color','k')
axes('Position',[0 0 1 1])
rng(0)
for j=1:100
x = rand;
i = randi(6,1,randi(81));
n = numel(i);
for k=1:n
y = 1-.01*k;
c = k/n;
t = text(x,y,s(i(k)),'FontName','Aril');
t.FontSize = 6;
t.Color = [0 c 0];
end
end
axis off