在Simpy中,该函数
Plane.equation()
用于制作给定平面的方程。用法: Plane.equation(x, y, z) 参数: x: optional y: optional z: optional 返回: Equation of Plane
范例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 sympy.csc()用法及代码示例
- Python sympy.S()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.eye()用法及代码示例
- Python sympy.tan()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python sympy.sin()用法及代码示例
- Python sympy.cos()用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python sympy.sec()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.Mul()用法及代码示例
注:本文由纯净天空筛选整理自ravikishor大神的英文原创作品 Python | Sympy Plane.equation() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。