sympy function definition

Solutions on MaxInterview for sympy function definition by the best coders in the world

showing results for - "sympy function definition"
Giulia
10 Oct 2018
1from sympy import Function, Symbol
2x = Symbol('x')
3f = Function('f')
4g = Function('g')(x)
Mila
14 Apr 2018
1import sympy
2x = sympy.symbols('x')
3f = x**2 + 1