Click or drag to resize
Accord.NET (logo)

RegressionFunction Delegate

Regression function delegate.

Namespace:  Accord.Statistics.Models.Regression
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public delegate double RegressionFunction(
	double[] coefficients,
	double[] input
)

Parameters

coefficients
Type: SystemDouble
The model coefficients, also known as parameters or coefficients.
input
Type: SystemDouble
An input vector.

Return Value

Type: Double
The output value produced given the coefficients and input vector.
Remarks
This delegate represents a parameterized function that, given a set of coefficients and an input vector, produces an associated output value.
See Also