Called before and after each internal step.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
protected virtual void ExamineStep(
	ODE..::.ExamineStepOptions state,
	double t,
	double[] y
)
Visual Basic (Declaration)
Protected Overridable Sub ExamineStep ( _
	state As ODE..::.ExamineStepOptions, _
	t As Double, _
	y As Double() _
)
Visual C++
protected:
virtual void ExamineStep(
	ODE..::.ExamineStepOptions state, 
	double t, 
	array<double>^ y
)

Parameters

state
Type: Imsl.Math..::.ODE..::.ExamineStepOptions
An ODE.ExamineStepOptions, one of BeforeStep, AfterSuccessfulStep or AfterUnsuccessfulStep.
t
Type: System..::.Double
A double representing the independent variable.
y
Type: array< System..::.Double >[]()[]
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