DoubleFunctionCollectionAdd Method (DoubleSimpleFunction, Double) |
Adds a function to the collection, and adds a threshold value that is of interest while
exploring the function.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public DoubleFunctionDetails Add(
DoubleSimpleFunction function,
double threshold
)
Public Function Add (
function As DoubleSimpleFunction,
threshold As Double
) As DoubleFunctionDetails
public:
DoubleFunctionDetails^ Add(
DoubleSimpleFunction^ function,
double threshold
)
member Add :
function : DoubleSimpleFunction *
threshold : float -> DoubleFunctionDetails
Parameters
- function
- Type: AGI.Foundation.NumericalMethodsDoubleSimpleFunction
The function to explore. - threshold
- Type: SystemDouble
The threshold value that is of interest while exploring the function.
Return Value
Type:
DoubleFunctionDetails
An instance describing the details of this function. This instance will have already
been added to this collection when this method returns.
See Also