在Simpy中,该函数
equation()
用于制作给定圆的方程。
用法: equation(x='x', y='y')
参数:
x: str or Symbol, optional
y: str or Symbol, optional
返回: SymPy expression
范例1:
# import sympy, Point and Circle
from sympy import Point, Circle
# using Circle()
c1 = Circle(Point(0, 0), 5)
c2 = c1.equation()
print(c2)
输出:
x**2 + y**2 - 25
范例2:
# import sympy, Point and Circle
from sympy import Point, Circle
# using Circle()
c3 = Circle(Point(1, 2), 5)
c4 = c3.equation()
print(c4)
输出:
(x - 1)**2 + (y - 2)**2 - 25
相关用法
- Python Sympy Ellipse.equation()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python sympy.Add()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.apart()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.cot()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.nP()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy equation() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。