⽤matlab表⽩,⽤函数表达对她的爱
恋爱过程中,⼥⽣往往需要许多⼩惊喜,下⾯我教⼤家⼀种⽤matlab表⽩的⼀⼩段程序。⽤⽤matlab表⽩,⽤函数传达对她的爱。
%% 函数LOVE YOU ❤
figure
subplot 241
a=0:0.1:4;
A=1./a;
plot(a,A,'r','LineWidth',10)%字母L
subplot 242
deta=-4:0.01:4;
b=3*cos(deta);
B=3*sin(deta);
plot(b,B,'r','LineWidth',10)%字母O
subplot 246
用subplot函数plot(b,B,'r','LineWidth',10)%字母O
subplot 243
c=-4:0.01:4;
C=abs(-2*c);
plot(c,C,'r','LineWidth',10)%字母V
subplot 244
d=-3:0.01:3;
D=-1*abs(sin(d));
plot(D,d,'r','LineWidth',10)%字母E
subplot 245
e=-10:0.01:10;
E=log2(abs(e));
plot(e,E,'r','LineWidth',10)%字母Y
subplot 247
f=-4:0.01:4;
F=2*f.^2;
plot(f,F,'r','LineWidth',10)%字母U
subplot 248
x=linspace(-2,2,1000);
y1=sqrt(2*sqrt(x.^2)-x.^2);
y2=-2.14*sqrt(sqrt(2)-sqrt(abs(x)));
plot(x,y1,'r',x,y2,'r','LineWidth',50)%❤
axis([-2.5,2.5,-3,1.5]);
title('**我爱你','position', [-10,1.5],'fontname','微软雅⿊','Color','r','FontSize',100)%**我爱你
效果图如下:
⼩伙伴们,快发给你的⼩⼥友吧!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。