当前位置: 首页>>代码示例>>Python>>正文


Python qexpr.QExpr类代码示例

本文整理汇总了Python中sympy.physics.quantum.qexpr.QExpr的典型用法代码示例。如果您正苦于以下问题:Python QExpr类的具体用法?Python QExpr怎么用?Python QExpr使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了QExpr类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_qexpr_commutative

def test_qexpr_commutative():
    q1 = QExpr(x)
    q2 = QExpr(y)
    assert q1.is_commutative is False
    assert q2.is_commutative is False
    assert q1*q2 != q2*q1

    q = QExpr._new_rawargs(0, 1, HilbertSpace())
    assert q.is_commutative is False
开发者ID:A-turing-machine,项目名称:sympy,代码行数:9,代码来源:test_qexpr.py

示例2: test_qexpr_new

def test_qexpr_new():
    q = QExpr(0)
    assert q.label == (0,)
    assert q.hilbert_space == HilbertSpace()
    assert q.is_commutative is False

    q = QExpr(0, 1)
    assert q.label == (Integer(0), Integer(1))

    q = QExpr._new_rawargs(HilbertSpace(), Integer(0), Integer(1))
    assert q.label == (Integer(0), Integer(1))
    assert q.hilbert_space == HilbertSpace()
开发者ID:A-turing-machine,项目名称:sympy,代码行数:12,代码来源:test_qexpr.py

示例3: _eval_args

 def _eval_args(cls, args):
     args = QExpr._eval_args(args)
     if len(args) == 1:
         return args
     else:
         raise ValueError("Too many arguments")
开发者ID:ChaliZhg,项目名称:sympy,代码行数:6,代码来源:sho1d.py

示例4: _eval_args

 def _eval_args(cls, args):
     args = QExpr._eval_args(args)
     if len(args) != 3:
         raise ValueError("3 Euler angles required, got: %r" % args)
     return args
开发者ID:hitej,项目名称:meta-core,代码行数:5,代码来源:spin.py

示例5: _eval_args

 def _eval_args(cls, args):
     # Fall back to this, because Gate._eval_args assumes that args is
     # all targets and can't contain duplicates.
     return QExpr._eval_args(args)
开发者ID:Aang,项目名称:sympy,代码行数:4,代码来源:qft.py

示例6: test_qexpr_subs

def test_qexpr_subs():
    q1 = QExpr(x, y)
    assert q1.subs(x, y) == QExpr(y, y)
    assert q1.subs({x: 1, y: 2}) == QExpr(1, 2)
开发者ID:A-turing-machine,项目名称:sympy,代码行数:4,代码来源:test_qexpr.py


注:本文中的sympy.physics.quantum.qexpr.QExpr类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。