• Remix
  • Share
  • New Entry

on 1 Nov 2021
  • 2
  • 96
  • 0
  • 0
  • 278
% Remix of Alex P's original idea
% with actual notation for "Hap-py birthy-day to you"
[x,y]=meshgrid(0,1:5);
plot(x'+[0;10],[y,y]','k')
hold
Current plot held
plot([4,8;4,8],[1,1;5,5],'k')
ylim([-5 12])
f=@(x,y,s,z)text(x,y,s,FontSi=10*z);
% Character placement highly sensitive to axis size
f(2.1,4,'𝄞',11)
f(.9,3.1,'♭',2)
f([1.4,1.4],[4,2],{'3','4'},4)
f([2.2,3],[1.3,1.3],{'𝅘𝅥𝅮.','𝅘𝅥𝅯'},4) % hap-py
f([5:7,8.5],[2.1,1.3,2.8,2.3],{'𝅘𝅥','𝅘𝅥','𝅘𝅥','𝅗𝅥'},4) % birth-day to you!
Remix Tree