bdeGetInitialStepSize

Takes model and returns the initial step size.

Syntax

initialStep = bdeGetInitialStepSize(model)

Inputs

model
Model used to get the initial step size from.
Type: diagram

Outputs

initialStep
The initial step size of the model.
Type: string

Examples

Get the initial step size:
model = bdeGetCurrentModel();
	  initialStep = bdeGetInitialStepSize(model)
initialStep = 1
Get the initial step size (Doesn't exist):
model = bdeGetCurrentModel();
	  initialStep = bdeGetInitialStepSize(model)
initialStep = -1