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


Python Function.function方法代码示例

本文整理汇总了Python中sympy.Function.function方法的典型用法代码示例。如果您正苦于以下问题:Python Function.function方法的具体用法?Python Function.function怎么用?Python Function.function使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sympy.Function的用法示例。


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

示例1: _main

# 需要导入模块: from sympy import Function [as 别名]
# 或者: from sympy.Function import function [as 别名]
 def _main(expr):
     _new = []
     for a in expr.args:
         is_V = False
         if isinstance(a, V):
             is_V = True
             a = a.expr
         if a.is_Derivative:
             variables = a.atoms()
             func = a.expr
             variables.add(func)
             name = a.expr.__class__.__name__
             if ',' in name:
                 a = Function('%s' % name +
                       ''.join(map(str, a.variables)))(*variables)
             else:
                 a = Function('%s' % name + ',' +
                       ''.join(map(str, a.variables)))(*variables)
         #TODO add more, maybe all that have args
         elif a.is_Add or a.is_Mul or a.is_Pow:
             a = _main(a)
         if is_V:
             a = V(a)
             a.function = func
         _new.append( a )
     return expr.func(*tuple(_new))
开发者ID:saullocastro,项目名称:programming,代码行数:28,代码来源:voperator.py


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