You are here: Start » FIL.NET » Function Reference » Data Classification » Regression Analysis » FIL.Statistics_OfLoop
Computes basic statistical information out of real numbers appearing in consecutive iterations.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void Statistics_OfLoop ( FilNet.Statistics_OfLoopState ioState, float inValue, int inBufferSize, int inOutlierCount, bool inUseSampleFormula, out float outMean, out float outMedian, out float outStandardDeviation, out float outMinimum, out float outMaximum, out float outSpread, out float outLinearTrend )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
ioState | FilNet.Statistics_OfLoopState | Stores information from previous iterations. | |||
![]() | inValue | float | Value used to compute statistical informations. | ||
![]() | inBufferSize | int | <1, +INF> | 10 | Defines how many numbers are taken into account. Default value: 10. |
![]() | inOutlierCount | int | <0, +INF> | 0 | Defines how many outliers should be removed from the input values. Default value: 0. |
![]() | inUseSampleFormula | bool | Defines, whether to use population, or sample formulas. | ||
![]() | outMean | float | Mean of the input values. | ||
![]() | outMedian | float | Median of the input values. | ||
![]() | outStandardDeviation | float | Standard deviation of the input values. | ||
![]() | outMinimum | float | Minimum of the input values. | ||
![]() | outMaximum | float | Maximum of the input values. | ||
![]() | outSpread | float | Difference between maximum and minimum of the input values. | ||
![]() | outLinearTrend | float | First parameter of the linear regression function (multiplier). |