Overload List
Overload 1: TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2) const;
Multiplies coresponding elements in Src2 with Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * |
Returns: the result of multipliing Src2 values with coresponding Src1 values.
Overload 2: TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2, const int SrcIndex1, const int SrcIndex2, const int Index, const int Len) const;
Multiply coresponding elements in Src2 with Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * | |
| 3 | SrcIndex1 | const int | |
| 4 | SrcIndex2 | const int | |
| 5 | Index | const int | |
| 6 | Len | const int |
Multiply Src1 elements [Src1Index..Src1Index+Len-1] with corrresponding Src2 elements [Src2Index..Src2ndex+Len] and store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 3: TMtxVecInt *Multiply(TMtxVecInt *Src) const;
Multiply Src elements with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Overload 4: TMtxVecInt *Multiply(TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const;
Mjultiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | const int | |
| 3 | Index | const int | |
| 4 | Len | const int |
Multiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 5: TMtxVecInt *Multiply(TMtxVecInt *Src, const int Value) const;
Multiply integer Value with all Src elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | const int |
Multiply integer Value with all Src elements and store the results in calling vector. Size of calling vector is adjusted automatically.
Overload 6: TMtxVecInt *Multiply(TMtxVecInt *Src, const int Value, const int SrcIndex, const int Index, const int Len) const;
Multiply integer value with Src vector elements [SrcIndex..SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | const int | |
| 3 | SrcIndex | const int | |
| 4 | Index | const int | |
| 5 | Len | const int |
Store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 7: TMtxVecInt *Multiply(const int Value) const;
Multiply integer value with all calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int |
Overload 8: TMtxVecInt *Multiply(const int Value, const int Index, const int Len) const;
Multiply integer value with calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int | |
| 2 | Index | const int | |
| 3 | Len | const int |
An exception is raised if array borders are overrun.