bdeGetZeroCrossingThreshold

Takes model and returns the zero crossing threshold.

Syntax

threshold = bdeGetZeroCrossingThreshold(model)

Inputs

model
Model used to get the zero crossing threshold from.
Type: diagram

Outputs

threshold
The zero crossing threshold of the model.
Type: string

Examples

Get the zero crossing threshold:
model = bdeGetCurrentModel();
	  threshold = bdeGetZeroCrossingThreshold(model)
threshold = 1
Get the zero crossing threshold (Doesn't exist):
model = bdeGetCurrentModel();
	  threshold = bdeGetZeroCrossingThreshold(model)
threshold = -1