Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double StdDev(); | Standard deviation. |
| 2 | double StdDev(int Index, int Len); | Returns the standard deviation of calling object elements [Index]..[Index+Len-1]. |
| 3 | TCplx StdDev(const TCplx &AMean); | Returns the standard deviation of all calling object complex elements. |
| 4 | TCplx StdDev(const TCplx &AMean, int Index, int Len); | Returns the standard deviation of calling object complex elements [Index]..[Index+Len-1]. |
| 5 | double StdDev(const double AMean); | Returns the standard deviation of all calling object elements. |
| 6 | double StdDev(const double AMean, int Index, int Len); | Returns the standard deviation of calling object elements [Index]..[Index+Len-1]. |
Overload 1: double StdDev();
Standard deviation.
Calculate the standard deviation of all calling object elements. The result is a real value. An exception is raised if calling vector TSparseMtx::Complex property is true.
Overload 2: double StdDev(int Index, int Len);
Returns the standard deviation of calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
An exception is raised if calling object TSparseMtx::Complex property is true or if array borders are overrun/underrun.
Overload 3: TCplx StdDev(const TCplx &AMean);
Returns the standard deviation of all calling object complex elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | const TCplx & |
The average of all calling object elements must be passed as a AMean parameter. An exception is raised if calling object TSparseMtx::Complex property is false.
Overload 4: TCplx StdDev(const TCplx &AMean, int Index, int Len);
Returns the standard deviation of calling object complex elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | const TCplx & | |
| 2 | Index | int | |
| 3 | Len | int |
The average of all calling object elements must be passed as a AMean parameter. An exception is raised if calling object TSparseMtx::Complex property is false or if array borders are overrun/underrun.
Overload 5: double StdDev(const double AMean);
Returns the standard deviation of all calling object elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | const double |
The average of all calling object elements must be passed as a AMean parameter. An exception is raised if calling object TSparseMtx::Complex property is true.
Overload 6: double StdDev(const double AMean, int Index, int Len);
Returns the standard deviation of calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AMean | const double | |
| 2 | Index | int | |
| 3 | Len | int |
The average of the coresponding elements must be passed as a parameter. An exception is raised if calling object TSparseMtx::Complex property is true or if array borders are overrun/underrun.