Click or drag to resize
Accord.NET (logo)

LeastSquaresFunction Delegate

Least Squares function delegate.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public delegate double LeastSquaresFunction(
	double[] parameters,
	double[] input
)

Parameters

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

Return Value

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