The intercept option.
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual int ModelIntercept { set; } |
Visual Basic (Declaration) |
---|
Public Overridable WriteOnly Property ModelIntercept As Integer |
Visual C++ |
---|
public: virtual property int ModelIntercept { void set (int value); } |
Field Value
An int scalar which indicates whether or not the model has an intercept.
Remarks
Input ModelIntercept is interpreted as follows:
Value | Action |
---|---|
0 | No intercept is in the model (unless otherwise provided for by the user). |
1 | Intercept is automatically included in the model. |
By default ModelIntercept = 1.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | is thrown when ModelIntercept is less than 0 or greater than 1 |