Gets the regression matrix.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DoubleMatrix RegressionMatrix { get; }
Visual Basic (Declaration)
Public ReadOnly Property RegressionMatrix As DoubleMatrix
Visual C++
public:
property DoubleMatrix^ RegressionMatrix {
	DoubleMatrix^ get ();
}

Remarks

The regression matrix is the predictor matrix (the matrix of values of the independent variables in a regression model), plus a column of leading ones, if the model contains an intercept parameter.
If you modify the data in the regression matrix using this reference, invoke the member function RecalculateParameters() to recalculate the parameters.

See Also