Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void SumAndSqrSum(double &Sum, double &SqrSum) const; | Computes the sum and the sum of squared elements from the elements in the calling object. |
| 2 | void SumAndSqrSum(double &Sum, double &SqrSum, int Index, int Len) const; | Returns the sum and the sum of squared elements. |
Overload 1: void SumAndSqrSum(double &Sum, double &SqrSum) const;
Computes the sum and the sum of squared elements from the elements in the calling object.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Sum | double & | |
| 2 | SqrSum | double & |
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 2: void SumAndSqrSum(double &Sum, double &SqrSum, int Index, int Len) const;
Returns the sum and the sum of squared elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Sum | double & | |
| 2 | SqrSum | double & | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Returns the sum and the sum of squared items from calling vector elements [Index]..[Index+Len-1].
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler