Click or drag to resize
ODE.ExamineStep 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(
	ODE. ExamineStepOptions state,
	double t,
	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: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