bdeGetMinStepSize

Takes model and returns the minimum step size.

Syntax

minStep = bdeGetMinStepSize(model)

Inputs

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

Outputs

minStep
The minimum step size of the model.
Type: string

Examples

Get the minimum step size:
model = bdeGetCurrentModel();
	  minStep = bdeGetMinStepSize(model)
minStep = 1
Get the minimum step size (Doesn't exist):
model = bdeGetCurrentModel();
	  minStep = bdeGetMinStepSize(model)
minStep = -1