Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double RMS() const; | Root mean square (RMS). |
| 2 | double RMS(int Index, int Len) const; | Calculate the RMS for calling object elements [Index]..[Index+Len-1] in-place. |
Overload 1: double RMS() const;
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: Matrix::StdDev
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: double RMS(int Index, int Len) const;
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::Matrix · Dew.Math/MtxExpr.h · Cross-compiler