Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void MaxMin(int &aMax, int &aMin) const; | Calculate minimum and maximum in one procedure call. |
| 2 | void MaxMin(int &aMax, int &aMin, const int Index, const int Len) const; | Calculate minimum and maximum in one procedure call. |
Overload 1: void MaxMin(int &aMax, int &aMin) const;
Calculate minimum and maximum in one procedure call.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | aMax | int & | Returns calling vector maximum value. |
| 2 | aMin | int & | Returns calling vector monimum value. |
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: void MaxMin(int &aMax, int &aMin, const int Index, const int Len) const;
Calculate minimum and maximum in one procedure call.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | aMax | int & | Returns calling vector elements [Index..Index+Len-1] maximum value. |
| 2 | aMin | int & | Returns calling vector elements [Index..Index+Len-1] minimum value. |
| 3 | Index | const int | The starting index at which to start the search. |
| 4 | Len | const int | The number of elements to search starting from Index. |
Remarks:
An exception is raised if array borders are overrun/underrun.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler