Parameter estimates and associated statistics.

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

Syntax

C#
public virtual double[,] Parameters { get; }
Visual Basic (Declaration)
Public Overridable ReadOnly Property Parameters As Double(,)
Visual C++
public:
virtual property array<double,2>^ Parameters {
	array<double,2>^ get ();
}

Field Value

An nCoef row by 4 column double matrix containing the parameter estimates and associated statistics or null if Solve()()() has not been called.

Remarks

Here, nCoef is the number of coefficients in the model. The statistics returned are as follows:

Column Statistic
0 Coefficient estimate.
1 Estimated standard deviation of the estimated coefficient.
2 Asymptotic normal score for testing that the coefficient is zero.
3 \rho - value associated with the normal score in column 2.

See Also