本文整理汇总了Python中sympy.Poly._permute方法的典型用法代码示例。如果您正苦于以下问题:Python Poly._permute方法的具体用法?Python Poly._permute怎么用?Python Poly._permute使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sympy.Poly
的用法示例。
在下文中一共展示了Poly._permute方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_poly_internals
# 需要导入模块: from sympy import Poly [as 别名]
# 或者: from sympy.Poly import _permute [as 别名]
def test_poly_internals():
p = Poly(x**2*y*z + x*y*z**3 + x*y + y*z, x, y, z)
assert p.as_dict() == \
{(1, 1, 3): 1, (1, 1, 0): 1, (2, 1, 1): 1, (0, 1, 1): 1}
assert Poly._permute(p, x) == \
{(2,): y*z, (0,): y*z, (1,): y + y*z**3}
assert Poly._permute(p, y) == \
{(1,): x + z + x*z**3 + z*x**2}
assert Poly._permute(p, z) == \
{(0,): x*y, (3,): x*y, (1,): y + y*x**2}
assert Poly._permute(p, x, y) == \
{(0, 1): z, (1, 1): 1 + z**3, (2, 1): z}
assert Poly._permute(p, y, x) == \
{(1, 2): z, (1, 0): z, (1, 1): 1 + z**3}
assert Poly._permute(p, x, z) == \
{(0, 1): y, (1, 0): y, (1, 3): y, (2, 1): y}
assert Poly._permute(p, z, x) == \
{(1, 2): y, (0, 1): y, (1, 0): y, (3, 1): y}
assert Poly._permute(p, y, z) == \
{(1, 0): x, (1, 3): x, (1, 1): 1 + x**2}
assert Poly._permute(p, z, y) == \
{(0, 1): x, (3, 1): x, (1, 1): 1 + x**2}
q = Poly(x**2*y*z + 2*x*y*z**3 + 3*x*y + 4*y*z, x, y, z)
assert q.as_dict() == \
{(1, 1, 3): 2, (1, 1, 0): 3, (2, 1, 1): 1, (0, 1, 1): 4}
assert Poly._permute(q, z, y, x) == \
{(0, 1, 1): 3, (1, 1, 0): 4, (3, 1, 1): 2, (1, 1, 2): 1}