Called before and after each internal step.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax protected virtual void ExamineStep(
ODEExamineStepOptions state,
double t,
double[] y
)
Protected Overridable Sub ExamineStep (
state As ODEExamineStepOptions,
t As Double,
y As Double()
)
protected:
virtual void ExamineStep(
ODEExamineStepOptions state,
double t,
array<double>^ y
)
abstract ExamineStep :
state : ODEExamineStepOptions *
t : float *
y : float[] -> unit
override ExamineStep :
state : ODEExamineStepOptions *
t : float *
y : float[] -> unit
Parameters
- state
- Type: Imsl.MathODEExamineStepOptions
An ODE.ExamineStepOptions, one of BeforeStep,
AfterSuccessfulStep or AfterUnsuccessfulStep.
- t
- Type: SystemDouble
A double representing the independent variable.
- y
- Type: SystemDouble
A double array containing the dependent variables.
Remarks
This method can be over-ridden by the user to examine intermediate values
of t and y.
See Also