Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *DivideBy(const int Value) const; | Divide Value with calling vector elements. |
| 2 | TMtxVecInt *DivideBy(const int Value, const int Index, const int Len) const; | Divide Value with calling vector elements [Index..Index+Len-1]. |
| 3 | TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src) const; | Divide Value with Src vector elements and store the result in the calling vector. |
| 4 | TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const; | Divide Value with Src vector elements [SrcIndex+SrcIndex+Len-1] and store the result in the calling vector [Index...Index+Len-1]. |
Overload 1: TMtxVecInt *DivideBy(const int Value) const;
Divide Value with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int |
Remarks:
Teh result is stored in the calling vector.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 2: TMtxVecInt *DivideBy(const int Value, const int Index, const int Len) const;
Divide Value with calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int | |
| 2 | Index | const int | |
| 3 | Len | const int |
Remarks:
An exception is raised if array borders are overrun.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 3: TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src) const;
Divide Value with Src vector elements and store the result in the calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int | |
| 2 | Src | TMtxVecInt * |
Remarks:
An exception is raised if array borders are overrun.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler
Overload 4: TMtxVecInt *DivideBy(const int Value, TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const;
Divide Value with Src vector elements [SrcIndex+SrcIndex+Len-1] and store the result in the calling vector [Index...Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int | |
| 2 | Src | TMtxVecInt * | |
| 3 | SrcIndex | const int | |
| 4 | Index | const int | |
| 5 | Len | const int |
Remarks:
An exception is raised if array borders are overrun.
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler