• Remix
  • Share
  • New Entry

on 6 Oct 2021
  • 9
  • 29
  • 0
  • 0
  • 261
%Matrix style (Orig Japanese Character)
s ='アイ ラブ マトラボ 日本語';
ss='ME LOVE MATLAB in Japanese'
ss = 'ME LOVE MATLAB in Japanese'
figure('Color',[0.1 0.6 0.1])
axes('Position',[0 0 1 1])
rng(0)
for j=1:100
x = rand;
i = randi(10,1,randi(100));
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
Remix Tree