Function
Function()
A function class for python that constructs an Expression when called with arguments. This allows to write:
f = Expression.fun("f")
e = f(1,2,3)Attributes
| Name | Type | Description |
|---|---|---|
| COEFF | symbolica.Function | The built-in function that converts a rational polynomial to a coefficient. |
| COS | symbolica.Function | The built-in cosine function. |
| SIN | symbolica.Function | The built-in sine function. |
| EXP | symbolica.Function | The built-in exponential function. |
| LOG | symbolica.Function | The built-in logarithm function. |
Methods
| Name | Description |
|---|---|
| is_symmetric | Returns True iff this function is symmetric. |
is_symmetric
Function.is_symmetric()
Returns True iff this function is symmetric.