• Remix
  • Share
  • New Entry

  • Ger

  • /
  • WTF is a Rainbow

on 5 Oct 2022
  • 1
  • 42
  • 0
  • 0
  • 257
x=1:360;y=1:360
y = 1×360
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Z=NaN(max(x),max(y));
col=1
col = 1
for i=1:max(x)
Z(1:360,i)=col;
col=col+1;
end
[C,h] = contourf(Z,360);
set(h,'LineColor','none')
txt = 'WTF?';
text(50,180,txt,'FontSize',100)
tickMarks = {'YTick',[]};
tickMarks_2 = {'XTick',[]};
set(gca,tickMarks{:},tickMarks_2{:});
Remix Tree