Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double Range() const; | Calculate the range from all calling object elements. |
| 2 | double Range(int Index, int Len) const; | Returns real range value from calling object elements [Index]..[Index+Len-1]. |
| 3 | void Range(double &ARange, int Index, int Len) const; | Calculate the range from calling object elements [Index]..[Index+Len-1]. The result ARange is a real value. |
Overload 1: double Range() const;
Calculate the range from all calling object elements.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 2: double Range(int Index, int Len) const;
Returns real range value from calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Remarks:
An exception is raised if calling object Matrix::Complex property is true or array borders are overrun.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler
Overload 3: void Range(double &ARange, int Index, int Len) const;
Calculate the range from calling object elements [Index]..[Index+Len-1]. The result ARange is a real value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ARange | double & | |
| 2 | Index | int | |
| 3 | Len | int |
Remarks:
An exception is raised if calling object Matrix::Complex property is true or array borders are overrun/underrun.
Declared in Dew::Math::Matrix · Dew.Math/MtxExpr.h · Cross-compiler