Python Sympy Ellipse.equation()方法
在sympy中,函数Ellipse.equation()是用来制作给定的椭圆的方程的。
语法: Ellipse.equation(x='x', y='y', _slope=None)
参数:
x : X轴的标签。默认值是’x’。
y : Y轴的标签。默认值是’y’。
_slope : 主轴的斜率。当 “无 “时被忽略。
返回: 方程: 交互式表达
示例 #1:
# import sympy, Point and Ellipse
from sympy import Point, Ellipse
from sympy.abc import x, y
# using Ellipse()
e1 = Ellipse(Point(1, 0), 3, 2)
# using equation()
eq1 = e1.equation(x, y);
print(eq1)
输出:
y**2/4 + (x/3 - 1/3)**2 - 1
示例 #2:
# import sympy, Point and Ellipse
from sympy import Point, Ellipse
from sympy.abc import x, y
# using Ellipse()
e2 = Ellipse(Point(0, 0), 3, 2)
# using equation()
eq2 = e2.equation(x, y);
print(eq2)
输出:
x**2/9 + y**2/4 - 1