bdeGetInitialStepSize
Takes model and returns the initial step size.
Syntax
initialStep = bdeGetInitialStepSize(model)
Inputs
- model
- Model used to get the initial step size from.
Outputs
- initialStep
- The initial step size of the model.
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