Python Sympy Plane.equation()方法

Python Sympy Plane.equation()方法

在Simpy中,函数Plane.equation()被用来制作一个给定的平面的方程。

语法 : Plane.equation(x, y, z)

参数:
x : optional
y : optional
z : optional

返回 : 平行线的方程式。

示例 #1:

# import sympy, Point3D and Plane
from sympy import Point3D, Plane
  
# using Plane()
  
p1 = Plane(Point3D(1, 2, 3), Point3D(4, 5, 6), Point3D(0, 2, 0))
p2 = p1.equation()
  
print(p2)

输出:

-9*x + 6*y + 3*z - 12

示例 #2:

# import sympy, Point3D and Plane
from sympy import Point3D, Plane
  
# using Plane()
  
p3 = Plane(Point3D(1, 2, 3), normal_vector =(2, 2, 2))
p4 = p3.equation()
  
print(p4)

输出:

2*x + 2*y + 2*z - 12

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程