|
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
)
Public Delegate Function LeastSquaresFunction (
parameters As Double(),
input As Double()
) As Double
Parameters
- parameters
- Type: SystemDouble
The function parameters, also known as weights or coefficients. - input
- Type: SystemDouble
An input vector.
Return Value
Type:
DoubleThe 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