蔓叶线的参数方程

来源:百度知道 编辑:UC知道 时间:2024/06/16 02:14:30
用matlab怎么画这个图像

蔓叶线的标准曲线方程是
y^3 = X^3/(2a - x)

参数方程可以设
x=(2a)*sin^2(t),
y=(2a)^2*tan^2(t)*sin^4(t).

Matlab作图可以用
a=1;
x=linspace(0,2*a);
y=x.^3./(2*a-x);
z=-y;
plot(x,y,x,z);
%axis equal