- /
-
WTF is a Rainbow
on 5 Oct 2022
- 1
- 42
- 0
- 0
- 257
x=1:360;y=1:360
Z=NaN(max(x),max(y));
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{:});