Contents Previous Next


UpperBoundType Property (BDKInput Object)

Description

For continuous data sets, specifies how the upper boundary should be treated during the fitting process. This function does not apply to discrete data sets. By default, the upper boundary type is set to the value of "unsure." You only need to set this property if you want to change this default.

Syntax

object.UpperBoundType

Arguments

None.

Return Value

(BDKBoundaryType) – one of the values:

Example

'Unsure upper bound
InputObj.UpperBoundType = BDKBoundTypeUnsure
'Fixed Upper bound of 100
InputObj.UpperBoundType = BDKBoundTypeFixed
InputObj.UpperBoundValue = 100