FuncApplication
FuncApplication[x->expr, y]
FuncApplication[x->expr, y] evaluates expr where all occurrences of x are substituted by y.
Note
FuncApplication does not currently support evaluating variables for intermediate parts in the Algebrakit CMS.
| Example | in | out |
|---|---|---|
The function x->x^2+3x evaluated for input 4. |
FuncApplication[x->x^2+3x,4] |
4^2 + 3 * 4 |
The function f evaluated for input x, with f defined as t->sin[t] and x defined as pi in the script. |
f[t] |
sin[pi] |