标签: python sympy
如何让autowrap返回实部和虚部? 例如:
import sympy as sym from sympy.utilities.autowrap import autowrap x, y = sym.symbols('x y', real=True) f = autowrap(sym.I*x+y**2,args=(x,y)) f(1,2)
返回4而不是4 + 1i。