Click or drag to resize
ODEExamineStep Method
Called before and after each internal step.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
protected virtual void ExamineStep(
	ODEExamineStepOptions state,
	double t,
	double[] y
)

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