| Interface | Description |
|---|---|
| Function |
Interface for the basic features of a function that maps a double onto
another double.
|
| FunctionDifferentiable | |
| FunctionInvertible | |
| FunctionMultiDimensional |
Interface for multi-dimensional function.
|
| FunctionMultiDimensionalDifferentiable |
Interface for multi-dimensional 1-D differentiable function
|
| IFunction |
| Class | Description |
|---|---|
| Function.Abs |
The function f(x) = abs(x)
|
| Function.Chop |
Returns the input value if its magnitude is greater than value specified at
construction; otherwise returns zero.
|
| Function.Constant |
The function f(x) = constant
|
| Function.Exp |
The function f(x) = exp(x)
|
| Function.Identity |
The function f(x) = x
|
| Function.Linear |
The function f(x) = a*x + b
|
| Function.Log |
The function f(x) = ln(x)
|
| Function.Reciprocal |
The function f(x) = 1/x
|
| Function.Sqrt |
The function f(x) = sqrt(x)
|
| FunctionChain |
Defines a function as chain of other functions.
|
| FunctionChain.Link |
Class for making linked list of Functions
|