• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 7
  • 38
  • 0
  • 0
  • 197
figure('color','k')
hold on
for i = 1:.01:10
y = 0.5+1/i ;s = 10*i ;
c = [.4+i/20 .2 .2];
if i==10
c='y';
end
text(0.5,y,'MATLAB','color',c,'FontSize',s,'HorizontalAlignment','center')
end
ylim([0.5 1])
axis off
Remix Tree