• Remix
  • Share
  • New Entry

on 15 Oct 2021
  • 4
  • 33
  • 0
  • 0
  • 245
n = 1000;
words = [repmat({'20'},n,1); {'20!'}];
counts = [rand(n,1)*1000; 2000];
f = figure('position',[1,1,1000,1000],'units','pixel');
wordcloud(words,counts,'MaxDisplayWords',n,'Color',rand(n+1,3));
x=getframe(f);
imshow(uint8(abs(double(x.cdata)-255)))
Remix Tree