Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Kurtosis(TMtxVec *Src, const double AMean, const double AStdDev, const int Index, const int Len); | |
| 2 | double Kurtosis(const double AMean, const double AStdDev); | The Kurtosis (fourth central momentum). |
| 3 | double Kurtosis(const double AMean, const double AStdDev, int Index, int Len); | Calculate the kurtosis for elements [Index]..[Index+Len-1]. |
Overload 1: double Kurtosis(TMtxVec *Src, const double AMean, const double AStdDev, const int Index, const int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | AMean | const double | |
| 3 | AStdDev | const double | |
| 4 | Index | const int | |
| 5 | Len | const int |
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 2: double Kurtosis(const double AMean, const double AStdDev);
The Kurtosis (fourth central momentum).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | const double | |
| 2 | AStdDev | const 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:
Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 3: double Kurtosis(const double AMean, const double AStdDev, int Index, int Len);
Calculate the kurtosis for elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | const double | |
| 2 | AStdDev | const double | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
An exception is raised if TMtx::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.
Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler