Model.Computed Property

Note: This API is now obsolete.
Gets whether the model has been computed.

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
[ObsoleteAttribute("Use the Fitted property instead.")]
public bool Computed { get; }

Property Value

Boolean
true if the Fit() 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 Fit() method to compute the results.

See Also