Defines the upper bound on the sum of the number of distinct values taken on by each classification variable.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual int UpperBound { set; }
Visual Basic (Declaration)
Public Overridable WriteOnly Property UpperBound As Integer
Visual C++
public:
virtual property int UpperBound {
	void set (int value);
}

Field Value

An int scalar specifying the upper bound on the sum of the number of distinct values taken on by each classification variable.

Remarks

By default, if property ClassificationVariableColumn has not been referenced UpperBound = 1. If property ClassificationVariableColumn has been referenced UpperBound = x.GetLength(0) * nclvar where nclvar is the number of classification variables.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown thrown when UpperBound is less than 1 and the number of classification variables is greater than 0

See Also