Returns the parameter estimates and associated statistics for a CategoricalGenLinModel object.

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

Syntax

C#
public virtual double[,] Solve()
Visual Basic (Declaration)
Public Overridable Function Solve As Double(,)
Visual C++
public:
virtual array<double,2>^ Solve()

Return Value

An nCoef row by 4 column double matrix containing the parameter estimates and associated statistics.

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.

Exceptions

ExceptionCondition
Imsl.Stat..::.ClassificationVariableException is thrown when the number of values taken by each classification variable has been set by the user to be less than or equal to 1
Imsl.Stat..::.ClassificationVariableLimitException is thrown when the sum of the number of distinct values taken on by each classification variable exceeds the maximum allowed, UpperBound
Imsl.Stat..::.DeleteObservationsException is thrown if the number of observations to delete has grown too large
Imsl.Stat..::.RankDeficientException is thrown if the model has been determined to be rank deficient

See Also