当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Sympy Ellipse.equation()用法及代码示例


在sympy中,函数Ellipse.equation()用于生成给定椭圆的方程。
用法: Ellipse.equation(x='x', y='y', _slope=None)

参数:
x: Label for the x-axis. Default value is ‘x’.
y:Label for the y-axis. Default value is ‘y’.
_slope: The slope of the major axis. Ignored when ‘None’.

返回: equation:sympy expression

范例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


相关用法


注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy Ellipse.equation() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。