Click or drag to resize
Accord.NET (logo)

ILinearRegression Interface

Note: This API is now obsolete.

Common interface for Linear Regression Models.

Namespace:  Accord.Statistics.Models.Regression.Linear
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use ITransform instead.")]
public interface ILinearRegression
Request Example View Source

The ILinearRegression type exposes the following members.

Methods
  NameDescription
Public methodCompute
Computes the model output for a given input.
Top
Remarks

This interface specifies a common interface for querying a linear regression model.

Since a closed-form solution exists for fitting most linear models, each of the models may also implement a Regress method for computing actual regression.

See Also