A copy of the R matrix.

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

Syntax

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

Field Value

A two dimensional double array containing a copy of the R matrix or null if Solve(NonlinearRegression..::.IFunction) has not been called.

Remarks

The upper triangular matrix containing the R matrix from a QR decomposition of the matrix of regressors.

See Also