The starting step size for the integration.

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

Syntax

C#
public double InitialStepsize { get; set; }
Visual Basic (Declaration)
Public Property InitialStepsize As Double
Visual C++
public:
property double InitialStepsize {
	double get ();
	void set (double value);
}

Field Value

A double scalar, the starting step size used in the integrator.

Default: InitialStepsize = -1.1102230246252e-16.

Remarks

The starting step size must be less than zero since the integration is internally done from t=0 to t=tGrid[tGrid.Length-1] in a negative direction.

See Also