在Sympy中,該函數
如果p在橢圓上,則返回通過點p的切線。否則,將切線從p返回到橢圓,如果沒有切線(例如,橢圓內部的p),則返回None。
tangent_lines()
返回p(point)和橢圓之間的切線。如果p在橢圓上,則返回通過點p的切線。否則,將切線從p返回到橢圓,如果沒有切線(例如,橢圓內部的p),則返回None。
用法: Ellipse.tangent_lines(p) 參數: p:Point 返回: tangent_lines: list with 1 or 2 Lines or empty list Raises: NotImplementedError: Can only find tangent lines for a point, p, on the ellipse.
範例1:
# import sympy and Point, Ellipse
from sympy import Point, Ellipse
# using Ellipse() method
e1 = Ellipse(Point(0, 0), 3, 2)
# using tangent_lines() method
l1 = e1.tangent_lines(Point(3, 0))
print(l1)
輸出:
[Line2D(Point2D(3, 0), Point2D(3, -12))]
範例2:
# import sympy and Point, Ellipse
from sympy import Point, Ellipse
# using Ellipse() method
e2 = Ellipse(Point(0, 0), 3, 2)
# using tangent_lines() method
l2 = e2.tangent_lines(Point(1, 1))
print(l2)
輸出:
[]
相關用法
- Python sympy.csc()用法及代碼示例
- Python sympy.cot()用法及代碼示例
- Python sympy.nP()用法及代碼示例
- Python sympy.crt()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python sympy.nC()用法及代碼示例
- Python sympy.cos()用法及代碼示例
- Python sympy.Pow()用法及代碼示例
- Python sympy.eye()用法及代碼示例
- Python sympy.tan()用法及代碼示例
- Python sympy.ones()用法及代碼示例
- Python sympy.sin()用法及代碼示例
- Python sympy.Add()用法及代碼示例
- Python sympy.S()用法及代碼示例
- Python sympy.has()用法及代碼示例
注:本文由純淨天空篩選整理自ravikishor大神的英文原創作品 Python | Sympy Ellipse.tangent_lines method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。