- /
-
Aim High
on 28 Oct 2021
- 22
- 115
- 0
- 0
- 273
m=55;
n=20;
l=@linspace;
x=[l(10,2,m) l(2,20,n)];
y=[l(0,20,m) l(20,0,n)];
[x,y]=stairs(x,y);
c=[.8 1 1];
figure('color','k')
hold
patch([0;x;4;4;0],[0;y;0;-1;-1],c)
plot(-2,24,'.w','MarkerSize',200);
stem(2.1,20,'.','color',c)
h=text(-4.9,24,'MATH WORKS','FontSize',8);
axis off
daspect([1 1 1])