我们得到以下等式来帮助绘制“爱”:
1 / x代表“ L”,(x ^ 2)+(y ^ 2)= 9代表“ O”,y = | -2x | “ V”和-3 | sin y |前面'。
这是我到目前为止的代码:
subplot(2,2,1)
x=linspace(6,15,1000);
y1=1./x;
plot(x,y1)
subplot(2,2,2)
y2=(x^2)+(y^2)==9;
plot(x,y2)
subplot(2,2,3)
y3= abs(-2);
plot(x,y3)
subplot(2,2,4)
y4=-3*abs(sin*y);
plot(x,y4)
xlabel('X')
我在绘制“ O”图时遇到麻烦,并且其余代码是否正确?