Contents Previous Next


LowerBoundType Property (BDKInput Object)

Description

For continuous data sets, specifies how the lower boundary should be treated during the fitting process. This function does not apply to discrete data sets. By default, the lower 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.LowerBoundType

Arguments

None.

Return Value

(BDKBoundaryType) – one of the values:

Example

'Unsure lower bound
InputObj.LowerBoundType = BDKBoundTypeUnsure
'Fixed Lower bound of 100
InputObj.LowerBoundType = BDKBoundTypeFixed
InputObj.LowerBoundValue = 100