|   | RegressionFunction Delegate | 
        
         
              Regression function delegate.
            
 
    Namespace: 
   Accord.Statistics.Models.Regression
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntaxpublic delegate double RegressionFunction(
	double[] coefficients,
	double[] input
)
Public Delegate Function RegressionFunction ( 
	coefficients As Double(),
	input As Double()
) As Double
Parameters
- coefficients
- Type: SystemDouble
 The model coefficients, also known as parameters or coefficients.
- input
- Type: SystemDouble
 An input vector.
Return Value
Type: 
DoubleThe output value produced given the
            
coefficients and 
input vector.
 Remarks
Remarks
              This delegate represents a parameterized function that, given a set of
              coefficients and an input
              vector, produces an associated output value.
            
 See Also
See Also