Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2); | Multiplies coresponding elements in Src2 with Src1. |
| 2 | TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len); | Multiply coresponding elements in Src2 with Src1. |
| 3 | TMtxVecInt *Multiply(TMtxVecInt *Src); | Multiply Src elements with calling vector elements. |
| 4 | TMtxVecInt *Multiply(TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Mjultiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements. |
| 5 | TMtxVecInt *Multiply(TMtxVecInt *Src, int Value); | Multiply integer Value with all Src elements. |
| 6 | TMtxVecInt *Multiply(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len); | Multiply integer value with Src vector elements [SrcIndex..SrcIndex+Len-1]. |
| 7 | TMtxVecInt *Multiply(int Value); | Multiply integer value with all calling vector elements. |
| 8 | TMtxVecInt *Multiply(int Value, int Index, int Len); | Multiply integer value with calling vector elements [Index..Index+Len-1]. |
Overload 1: TMtxVecInt *Multiply(TMtxVecInt *Src1, TMtxVecInt *Src2);
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, int SrcIndex1, int SrcIndex2, int Index, int Len);
Multiply coresponding elements in Src2 with Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * | |
| 3 | SrcIndex1 | int | |
| 4 | SrcIndex2 | int | |
| 5 | Index | int | |
| 6 | Len | 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);
Multiply Src elements with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Overload 4: TMtxVecInt *Multiply(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Mjultiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | 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, int Value);
Multiply integer Value with all Src elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | 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, int Value, int SrcIndex, int Index, int Len);
Multiply integer value with Src vector elements [SrcIndex..SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | 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(int Value);
Multiply integer value with all calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int |
Overload 8: TMtxVecInt *Multiply(int Value, int Index, int Len);
Multiply integer value with calling vector elements [Index..Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int | |
| 2 | Index | int | |
| 3 | Len | int |
An exception is raised if array borders are overrun.