本文整理汇总了Python中sympy.core.relational.Relational类的典型用法代码示例。如果您正苦于以下问题:Python Relational类的具体用法?Python Relational怎么用?Python Relational使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Relational类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: test_rel_subs
def test_rel_subs():
e = Relational(x, y, '==')
e = e.subs(x,z)
assert isinstance(e, Equality)
assert e.lhs == z
assert e.rhs == y
e = Relational(x, y, '<')
e = e.subs(x,z)
assert isinstance(e, StrictInequality)
assert e.lhs == z
assert e.rhs == y
开发者ID:KevinGoodsell,项目名称:sympy,代码行数:14,代码来源:test_relational.py
示例2: test_rel_subs
def test_rel_subs():
e = Relational(x, y, "==")
e = e.subs(x, z)
assert isinstance(e, Equality)
assert e.lhs == z
assert e.rhs == y
e = Relational(x, y, "<")
e = e.subs(x, z)
assert isinstance(e, StrictInequality)
assert e.lhs == z
assert e.rhs == y
e = Eq(x, 0)
assert e.subs(x, 0) == True
assert e.subs(x, 1) == False
开发者ID:kendhia,项目名称:sympy,代码行数:18,代码来源:test_relational.py
示例3: __new__
def __new__(cls, lhs, rhs=0, **assumptions):
from sympy.matrices.expressions.matexpr import (
MatrixElement, MatrixSymbol)
from sympy.tensor.indexed import Indexed
lhs = _sympify(lhs)
rhs = _sympify(rhs)
# Tuple of things that can be on the lhs of an assignment
assignable = (Symbol, MatrixSymbol, MatrixElement, Indexed)
if not isinstance(lhs, assignable):
raise TypeError("Cannot assign to lhs of type %s." % type(lhs))
# Indexed types implement shape, but don't define it until later. This
# causes issues in assignment validation. For now, matrices are defined
# as anything with a shape that is not an Indexed
lhs_is_mat = hasattr(lhs, 'shape') and not isinstance(lhs, Indexed)
rhs_is_mat = hasattr(rhs, 'shape') and not isinstance(rhs, Indexed)
# If lhs and rhs have same structure, then this assignment is ok
if lhs_is_mat:
if not rhs_is_mat:
raise ValueError("Cannot assign a scalar to a matrix.")
elif lhs.shape != rhs.shape:
raise ValueError("Dimensions of lhs and rhs don't align.")
elif rhs_is_mat and not lhs_is_mat:
raise ValueError("Cannot assign a matrix to a scalar.")
return Relational.__new__(cls, lhs, rhs, **assumptions)
开发者ID:SungSingSong,项目名称:sympy,代码行数:24,代码来源:codeprinter.py
示例4: test_rel_subs
def test_rel_subs():
e = Relational(x, y, '==')
e = e.subs(x, z)
assert isinstance(e, Equality)
assert e.lhs == z
assert e.rhs == y
e = Relational(x, y, '>=')
e = e.subs(x, z)
assert isinstance(e, GreaterThan)
assert e.lhs == z
assert e.rhs == y
e = Relational(x, y, '<=')
e = e.subs(x, z)
assert isinstance(e, LessThan)
assert e.lhs == z
assert e.rhs == y
e = Relational(x, y, '>')
e = e.subs(x, z)
assert isinstance(e, StrictGreaterThan)
assert e.lhs == z
assert e.rhs == y
e = Relational(x, y, '<')
e = e.subs(x, z)
assert isinstance(e, StrictLessThan)
assert e.lhs == z
assert e.rhs == y
e = Eq(x, 0)
assert e.subs(x, 0) is S.true
assert e.subs(x, 1) is S.false
开发者ID:Amo10,项目名称:Computer-Science-2014-2015,代码行数:39,代码来源:test_relational.py
示例5: __new__
def __new__(cls, lhs, rhs=0, **options):
lhs = _sympify(lhs)
rhs = _sympify(rhs)
return Relational.__new__(cls, lhs, rhs, **options)
开发者ID:eunjongkim,项目名称:sympsi,代码行数:5,代码来源:qutility.py
注:本文中的sympy.core.relational.Relational类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论