You are here: Start » FIL.NET » Invoke.QuadraticRegression
Computes quadratic regression of given point set.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void QuadraticRegression ( List<float> inYValues, Optional<List<float>> inXValues, out Fil.QuadraticFunction outQuadraticFunction, List<float> outEstimatedValues, List<float> outResiduals, out float outRSquared )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inYValues | System.Collections.Generic.List<float> | Sequence of ordinates. | ||
![]() | inXValues | Ftl.Optional<System.Collections.Generic.List<float>> | Sequence of abscissae, or {0, 1, 2, ...} by default. Default value: ftl::NIL. | ||
![]() | outQuadraticFunction | Fil.QuadraticFunction | Quadratic function approximating the given point set. | ||
![]() | outEstimatedValues | System.Collections.Generic.List<float> | The result of application of the computed function to the X values. | ||
![]() | outResiduals | System.Collections.Generic.List<float> | Difference between an input Y value and the corresponding estimated value. | ||
![]() | outRSquared | float | Coefficient of determination of output function. |