Note: This API is now obsolete.
Gets whether the model has been computed.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the Fitted property instead.")]
public bool Computed { get; }
<ObsoleteAttribute("Use the Fitted property instead.")>
Public ReadOnly Property Computed As Boolean
Get
public:
[ObsoleteAttribute(L"Use the Fitted property instead.")]
property bool Computed {
bool get ();
}
[<ObsoleteAttribute("Use the Fitted property instead.")>]
member Computed : bool with get
Property Value
Type:
Boolean if the
Fit method has been called and
the results of the model are available; Otherwise
.
Inspect this property to determine whether the results of the model are available.
If this property returns ,
call the Fit method
to compute the results.
Reference