You are here: Start » FIL.NET » Invoke.Statistics_OfArray
Computes basic statistical information out of an array of real numbers. The array must be not empty.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void Statistics_OfArray ( List<float> inValues, int inOutlierCount, bool inUseSampleFormula, Optional<float> outMean, Optional<float> outMedian, Optional<float> outStandardDeviation, Optional<float> outMinimum, Optional<float> outMaximum, Optional<float> outSpread, Optional<float> outLinearTrend )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inValues | System.Collections.Generic.List<float> | Values used to compute statistical informations. | ||
![]() | inOutlierCount | int | <0, +INF> | 0 | Defines how many outliers should be removed from the input values. Default value: 0. |
![]() | inUseSampleFormula | bool | False | Defines, whether to use population, or sample formulas. Default value: False. | |
![]() | outMean | Ftl.Optional<float> | Mean of the input values. | ||
![]() | outMedian | Ftl.Optional<float> | Median of the input values. | ||
![]() | outStandardDeviation | Ftl.Optional<float> | Standard deviation of the input values, treated as population. | ||
![]() | outMinimum | Ftl.Optional<float> | Minimum of the input values. | ||
![]() | outMaximum | Ftl.Optional<float> | Maximum of the input values. | ||
![]() | outSpread | Ftl.Optional<float> | Difference between maximum and minimum of the input values. | ||
![]() | outLinearTrend | Ftl.Optional<float> | First parameter of the linear regression function (multiplier). |