Mean¶
Global Algorithm - One-Dimensional Algorithm
Mean algorithm takes the average of the available values. The basic formula is stated as follows:
μ=∑Ni=1YiN
where Yi denotes the ith value in the data set, N is the length of the data vector and μ is the computed mean value.
Input Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
Y | Y∈RN | N∈N | Input data vector of length N |
Output Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
μ | μ∈R | Mean value of data values available in Y | The result is sensitive to improper values such as ‘nan’, ‘inf’, ‘null, ‘etc. |
Tool Support
-
For details refer to the online documentation of the function ‘AVERAGE’.
-
For details refer to the online documentation of the function ‘MEAN’.
-
For details refer to the online documentation of the function ‘mean’.
Single Steps using the Algorithm