本文整理汇总了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))