Conic 命令

Conic( <Point>, <Point>, <Point>, <Point>, <Point> )

返回通过五个给定点的圆锥曲线。

Conic((0, -4), (2, 4), (3,1), (-2,3), (-3,-1)) 生成 151x² - 37x y + 72y² + 14x - 42y = 1320 .

如果四个点位于同一条直线上,则该圆锥曲线未定义。

Conic( <Number a>, <Number b>, <Number c>, <Number d>, <Number e>, <Number f> )

返回圆锥曲线 \(a\cdot x^2+d\cdot xy+b\cdot y^2+e\cdot x+f\cdot y=-c\)。

Conic(2, 3, -1, 4, 2, -3) 生成 2x² + 4x y + 3y² + 2x - 3y = 1 .

Conic( <List> )

返回圆锥曲线 \(a\cdot x^2+d\cdot xy+b\cdot y^2+e\cdot x+f\cdot y=-c\)。

Conic({2, 3, -1, 4, 2, -3}) 生成 2x² + 4x y + 3y² + 2x - 3y = 1 .

另请参阅 Mode conic5.svg Conic_through_5_Points 工具和 Coefficients 命令。