Gets a value that indicates whether the regression model has been computed.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public ReadOnly Property Computed As Boolean
C#
public bool Computed { get; }
C++
public:
bool Computed {
	bool get ();
}

Value

true if the Compute() method has been called and the results of the model are available; Otherwise false.

Remarks

Inspect this property to determine whether the results of the model are available. If this property returns false, call the Compute() method to compute the results.

See Also