DurationFunctionCollectionAdd Method (DurationSimpleFunction, 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: 25.1.421.0 (25.1.421.0)
Syntaxpublic DurationFunctionDetails Add(
	DurationSimpleFunction function,
	double threshold
)
Public Function Add ( 
	function As DurationSimpleFunction,
	threshold As Double
) As DurationFunctionDetails
public:
DurationFunctionDetails^ Add(
	DurationSimpleFunction^ function, 
	double threshold
)
member Add : 
        function : DurationSimpleFunction * 
        threshold : float -> DurationFunctionDetails 
Parameters
- function
 - Type: AGI.Foundation.NumericalMethodsDurationSimpleFunction
The function to explore. - threshold
 - Type: SystemDouble
The threshold value that is of interest while exploring the function. 
Return Value
Type: 
DurationFunctionDetails
            An instance describing the details of this function.  This instance will have already
            been added to this collection when this method returns.
            
See Also