|
Code Packages
1
Add-on code processing modules
|
Provides functions for statistical analysis More...
Static Public Member Functions | |
| static double | Average (double[] A) |
| Arithmetic mean More... | |
| static double | CMoment (double[] A, int order) |
| Central Moment More... | |
| static double | CVariation (double[] A) |
| Coefficient of variation (CV) More... | |
| static double | GeometricMean (double[] A) |
| Geometric mean More... | |
| static double | HarmonicMean (double[] A) |
| Harmonic mean More... | |
| static double | Kurtosis (double[] A) |
| Kurtosis More... | |
| static double | MAD (double[] A) |
| Mean Absolute Deviation (MAD) More... | |
| static double | Max (double[] A) |
| Maximum More... | |
| static double | Max (double[] A, ref int index) |
| Maximum More... | |
| static double | Median (double[] A) |
| Median More... | |
| static double | Min (double[] A) |
| Minimum More... | |
| static double | Min (double[] A, ref int index) |
| Minimum More... | |
| static double | Moment (double[] A, int order) |
| Sample Moment More... | |
| static double | RMS (double[] A) |
| Root Mean Square More... | |
| static double | SDeviation (double[] A) |
| Standard deviation More... | |
| static double | Skewness (double[] A) |
| Skewness More... | |
| static double | Sum (double[] A) |
| Sums all values of an array More... | |
| static double | SumOfSquares (double[] A) |
| Sum of squares More... | |
| static double | Variance (double[] A) |
| Variance More... | |
Provides functions for statistical analysis
|
static |
Arithmetic mean
| A | real array |

Example
|
static |
Central Moment
| A | real array |
| order | order (positive) |

Example
|
static |
Coefficient of variation (CV)
| A | real array |

Example
|
static |
Geometric mean
| A | real array |
![$\displaystyle G=\left[\prod\limits_{i=1}^{N}x_i\right]^{\displaystyle \frac{1}{N}}$](form_155.png)
Example
|
static |
Harmonic mean
| A | real array |

Example
|
static |
Kurtosis
| A | real array |
![$\displaystyle k=\frac{\displaystyle \frac{1}{N}\sum\limits_{i=1}^{N}(x_i-\overline{x})^4}{\displaystyle\left[\frac{1}{N}\sum\limits_{i=1}^{N}(x_i-\overline{x})^2\right]^2}$](form_147.png)
Example
|
static |
Mean Absolute Deviation (MAD)
| A | real array |

Example
|
static |
Maximum
Returns the maximum value found in an array
| A | real array |
Example
|
static |
Maximum
Returns the maximum value found in an array and the position index
| A | real array |
| index | position index (return value) |
Example
|
static |
Median
The Median function sorts a set of real values in ascending order and returns the middle number. If there are two middle numbers an average value is calculated.
| A | real array |
Example
|
static |
Minimum
Returns the minimum value found in an array
| A | real array |
Example
|
static |
Minimum
Returns the minimum value found in an array and the position index
| A | real array |
| index | position index (return value) |
Example
|
static |
Sample Moment
| A | real array |
| order | order (positive) |

Example
|
static |
Root Mean Square
| A | real array |

Example
|
static |
Standard deviation
| A | real array |

Example
|
static |
Skewness
| A | real array |
![$\displaystyle s=\frac{\displaystyle \frac{1}{N}\sum\limits_{i=1}^{N}(x_i-\overline{x})^3}{\displaystyle\left[\sqrt{\frac{1}{N}\sum\limits_{i=1}^{N}(x_i-\overline{x})^2}\right]^3}$](form_148.png)
Example
|
static |
Sums all values of an array
| A | real array |

Example
|
static |
Sum of squares
| A | real array |

Example
|
static |
Variance
| A | real array |

Example