Unary |
The UnaryFunctions type exposes the following members.
| Name | Description | |
|---|---|---|
| Add | Creates a function that adds the results of two functions: h(x) = f1(x) + f2(x). | |
| Compound | Creates a composite function: h(x) = f1(f2(x)). | |
| Constant | Creates a constant function f(x) = a. | |
| Identity | Creates the identity function f(x) = x. | |
| Minus | Creates the negation of a function: h(x) = -f(x). | |
| Multiply | Creates a function that scales another function by a constant factor: h(x) = lambda * f(x). | |
| Subtract | Creates a function that subtracts the results of two functions: h(x) = f1(x) - f2(x). |