StepwiseRegression Constructor (Double, Int32) |
Creates a new instance of StepwiseRegression from a
user-supplied variance-covariance matrix.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public StepwiseRegression(
double[,] cov,
int nObservations
)
Public Sub New (
cov As Double(,),
nObservations As Integer
)
public:
StepwiseRegression(
array<double,2>^ cov,
int nObservations
)
new :
cov : float[,] *
nObservations : int -> StepwiseRegression
Parameters
- cov
- Type: SystemDouble
A double matrix containing a variance-covariance or sum-of-
squares and crossproducts matrix, in which the last column must
correspond to the dependent variable.
- nObservations
- Type: SystemInt32
An int containing the number of observations associated with
cov.
Remarks See Also