DoubleFunctionExplorer.StepInteractively Method |
Steps exploration to a specified Variable. Any findings during the step are reported in
an enumerable collection of
DoubleFunctionFindings.
Events are not raised for the findings.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic IEnumerable<DoubleFunctionFinding> StepInteractively(
double next
)
Public Function StepInteractively (
next As Double
) As IEnumerable(Of DoubleFunctionFinding)
public:
IEnumerable<DoubleFunctionFinding^>^ StepInteractively(
double next
)
member StepInteractively :
next : float -> IEnumerable<DoubleFunctionFinding>
Parameters
- next
- Type: System.Double
The Variable to which to step.
Return Value
Type:
IEnumerable<DoubleFunctionFinding>
An enumerable collection of findings over the step. This collection becomes invalid the next time
the function explorer is stepped.
See Also