DurationFunctionThresholdCrossingIndicated Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods.Advanced
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic DurationFunctionThresholdCrossingIndicated(
DurationFunctionExplorer explorer,
DurationFunctionDetails function,
DurationFunctionThresholdDetails threshold,
DurationFunctionExtremumFound extremum,
Duration leftDuration,
double leftValue,
Duration rightDuration,
double rightValue
)
Public Sub New (
explorer As DurationFunctionExplorer,
function As DurationFunctionDetails,
threshold As DurationFunctionThresholdDetails,
extremum As DurationFunctionExtremumFound,
leftDuration As Duration,
leftValue As Double,
rightDuration As Duration,
rightValue As Double
)
public:
DurationFunctionThresholdCrossingIndicated(
DurationFunctionExplorer^ explorer,
DurationFunctionDetails^ function,
DurationFunctionThresholdDetails^ threshold,
DurationFunctionExtremumFound^ extremum,
Duration leftDuration,
double leftValue,
Duration rightDuration,
double rightValue
)
new :
explorer : DurationFunctionExplorer *
function : DurationFunctionDetails *
threshold : DurationFunctionThresholdDetails *
extremum : DurationFunctionExtremumFound *
leftDuration : Duration *
leftValue : float *
rightDuration : Duration *
rightValue : float -> DurationFunctionThresholdCrossingIndicated
Parameters
- explorer
- Type: AGI.Foundation.NumericalMethods.DurationFunctionExplorer
The instance that identified this threshold crossing. - function
- Type: AGI.Foundation.NumericalMethods.DurationFunctionDetails
The function that crossed the threshold. - threshold
- Type: AGI.Foundation.NumericalMethods.DurationFunctionThresholdDetails
The threshold that was crossed. - extremum
- Type: AGI.Foundation.NumericalMethods.Advanced.DurationFunctionExtremumFound
The extremum that led to the discovery of this crossing, or null if and
extremum was not involved in the discovery of this crossing.
- leftDuration
- Type: AGI.Foundation.Time.Duration
The duration to the left of the threshold. - leftValue
- Type: System.Double
The function value to the left of the threshold. - rightDuration
- Type: AGI.Foundation.Time.Duration
The duration to the right of the threshold. - rightValue
- Type: System.Double
The function value to the right of the threshold.
See Also