Python Sympy Ellipse.equation()方法

Python Sympy Ellipse.equation()方法

在sympy中,函数Ellipse.equation()是用来制作给定的椭圆的方程的。

语法: Ellipse.equation(x='x', y='y', _slope=None)

参数:
x : X轴的标签。默认值是’x’。
y : Y轴的标签。默认值是’y’。
_slope : 主轴的斜率。当 “无 “时被忽略。

返回: 方程: 交互式表达

示例 #1:

# import sympy, Point and Ellipse
from sympy import Point, Ellipse
from sympy.abc import x, y
  
# using Ellipse() 
e1 = Ellipse(Point(1, 0), 3, 2)
  
# using equation()
eq1 = e1.equation(x, y);
  
print(eq1)

输出:

y**2/4 + (x/3 - 1/3)**2 - 1

示例 #2:

# import sympy, Point and Ellipse
from sympy import Point, Ellipse
from sympy.abc import x, y
  
# using Ellipse() 
e2 = Ellipse(Point(0, 0), 3, 2)
  
# using equation()
eq2 = e2.equation(x, y);
  
print(eq2)

输出:

x**2/9 + y**2/4 - 1

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程