Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double RMS(); | Root mean square (RMS). |
| 2 | double RMS(int Index, int Len); | Calculate the RMS for calling object elements [Index]..[Index+Len-1] in-place. |
Overload 1: double RMS();
Root mean square (RMS).
Remarks:
Calculate the root mean square value for all calling object elements in-place. The root mean square (RMS) is defined by the equation:
See Also: TVec::StdDev
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 2: double RMS(int Index, int Len);
Calculate the RMS for calling object elements [Index]..[Index+Len-1] in-place.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Remarks:
An exception is raised if array borders are overrun.
Declared in Dew::Math::TMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler