function Kurtosis(AMean: Double; AStdDev: Double): Double;
The Kurtosis (fourth central momentum).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | Double | pre-computed mean |
| 2 | AStdDev | Double | output std deviation |
Returns: Double
Remarks:
Calculate the calling object kurtosis by using mean value AMean and standard deviation AStdDev. Kurtosis is the fourth central moment, divided by fourth power of standard deviation:
Indexed: function Kurtosis(AMean: Double; AStdDev: Double; Index: Integer; Len: Integer): Double;
Calculate the kurtosis for elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | Double | pre-computed mean |
| 2 | AStdDev | Double | output std deviation |
| 3 | Index | Integer | start index |
| 4 | Len | Integer | element count |
Returns: Double
Remarks:
An exception is raised if Vector.ConditionCheck is True and array borders are overrun. The AMean and AStdDev passed as parameters must be computed from the same elements (Index, Len) as the Kurtosis itself.