Re: [sympy] providing a definition for a symbolic function

2017-03-26 Thread Aaron Meurer
You might have been thinking of implemented_function, although that function is designed for numeric functions. Aaron Meurer On Sat, Mar 25, 2017 at 5:51 PM, Jason Moore wrote: > Is it here: http://docs.sympy.org/latest/modules/functions/index.html > > > Jason >

Re: [sympy] providing a definition for a symbolic function

2017-03-25 Thread Jason Moore
Is it here: http://docs.sympy.org/latest/modules/functions/index.html Jason moorepants.info +01 530-601-9791 On Sat, Mar 18, 2017 at 11:48 PM, Daniel Mahler wrote: > I believe i recently saw in the sympy documentation a function to set the > definition of a symbolic

[sympy] providing a definition for a symbolic function

2017-03-19 Thread Daniel Mahler
I believe i recently saw in the sympy documentation a function to set the definition of a symbolic function. Something like var('n') F = Function('F') the_function_I cant_remember(F, lambda x: x + 1) z = F(3*n) # ==> 3*n+1 I thought the function was called something like