StepwiseRegression Constructor (Double, Double) |
Creates a new instance of StepwiseRegression.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public StepwiseRegression(
double[,] x,
double[] y
)
Public Sub New (
x As Double(,),
y As Double()
)
public:
StepwiseRegression(
array<double,2>^ x,
array<double>^ y
)
new :
x : float[,] *
y : float[] -> StepwiseRegression
Parameters
- x
- Type: SystemDouble
A double matrix of nObs by nVars, where
nObs is the number of observations and nVars is the
number of independent variables.
- y
- Type: SystemDouble
A double array containing the observations of the dependent
variable.
Exceptions Exception | Condition |
---|
TooManyObsDeletedException |
is thrown if more observations have been deleted than were originally
entered
|
MoreObsDelThanEnteredException |
is thrown if more observations are being deleted from the output
covariance matrix than were originally entered
|
DiffObsDeletedException |
is thrown if different observations are being deleted from the return
matrix than were originally entered
|
See Also