IDoubleFunctionSampler.GetNextSample Method |
Gets the next Variable at which to sample 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)
Syntaxdouble GetNextSample(
double intervalStart,
double intervalStop,
double lastSample
)
Function GetNextSample (
intervalStart As Double,
intervalStop As Double,
lastSample As Double
) As Double
double GetNextSample(
double intervalStart,
double intervalStop,
double lastSample
)
abstract GetNextSample :
intervalStart : float *
intervalStop : float *
lastSample : float -> float
Parameters
- intervalStart
- Type: System.Double
The beginning of the overall interval being evaluated. - intervalStop
- Type: System.Double
The end of the overall interval being evaluated. - lastSample
- Type: System.Double
The previous Variable at which the function was sampled.
Return Value
Type:
DoubleThe next Variable at which to sample the function.
See Also