在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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。