You are here: Start » FIL.NET » FIS.QuadraticRegression Method
FIS.QuadraticRegression Method
Computes quadratic regression of given point set.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void QuadraticRegression ( IList<float> inYValues, out FilNet.QuadraticFunction outQuadraticFunction, IList<float> outEstimatedValues, IList<float> outResiduals, out float outRSquared )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inYValues | System.Collections.Generic.IList<float> | Sequence of ordinates. | ||
![]() | outQuadraticFunction | FilNet.QuadraticFunction | Quadratic function approximating the given point set. | ||
![]() | outEstimatedValues | System.Collections.Generic.IList<float> | The result of application of the computed function to the X values. | ||
![]() | outResiduals | System.Collections.Generic.IList<float> | Difference between an input Y value and the corresponding estimated value. | ||
![]() | outRSquared | float | Coefficient of determination of output function. |