在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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。