Constructs a new statistical model.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Protected Sub New ( _ dependentVariable As Variable, _ independentVariables As Variable(), _ anovaTableRowCount As Integer _ ) |
| C# |
|---|
protected GeneralLinearModel ( Variable dependentVariable, Variable[] independentVariables, int anovaTableRowCount ) |
| C++ |
|---|
protected: GeneralLinearModel ( Variable^ dependentVariable, array<Variable^>^ independentVariables, int anovaTableRowCount ) |
Parameters
- dependentVariable (Extreme.Statistics.Variable)
- A Variable representing the dependent variable of the model.
- independentVariables ()
- An array of Variable objects containing the independent variables.
- anovaTableRowCount (System.Int32)
- The number of rows in the model's AnovaTable.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | dependentVariable is nullNothingnullptr.
-or- independentVariables is nullNothingnullptr. |