Overload List
Overload 1: TMtxVecInt *Add(TMtxVecInt *Src1, TMtxVecInt *Src2);
Add coresponding elements in Src2 to Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * |
Returns: the result of adding Src2 values from coresponding Src1 values.
Overload 2: TMtxVecInt *Add(TMtxVecInt *Src1, TMtxVecInt *Src2, int SrcIndex1, int SrcIndex2, int Index, int Len);
Add coresponding elements in Src2 to Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * | |
| 3 | SrcIndex1 | int | |
| 4 | SrcIndex2 | int | |
| 5 | Index | int | |
| 6 | Len | int |
Add Src1 elements [Src1Index..Src1Index+Len-1] to corrresponding Src2 elements [Src2Index..Src12ndex+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 *Add(TMtxVecInt *Src);
Add Src elements to calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Overload 4: TMtxVecInt *Add(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Add Src elements [SrcIndex..SrcIndex+Len-1] to calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Add Src elements [SrcIndex..SrcIndex+Len-1] to calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 5: TMtxVecInt *Add(TMtxVecInt *Src, int Value);
Add integer Value to all Src elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int |
Add integer Value to all Src elements and store the results in calling vector. Size of calling vector is adjusted automatically.
Overload 6: TMtxVecInt *Add(TMtxVecInt *Src, int Value, int SrcIndex, int Index, int Len);
Add integer Value to Src elements [SrcIndex..SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | int | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
Add integer Value to Src elements [SrcIndex..SrcIndex+Len-1] and store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.
Overload 7: TMtxVecInt *Add(int Value);
Add integer value to all calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | int |
Overload 8: TMtxVecInt *Add(int Value, int Index, int Len);
Add integer value to 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.
Overload 9: TMtxVecInt *Add(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z);
Compute X + Y + Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | TMtxVecInt * |
Overload 10: TMtxVecInt *Add(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, TMtxVecInt *Z, int zIndex, int Index, int Len);
Compute X + Y + Z on sub arrays
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | TMtxVecInt * | |
| 6 | zIndex | int | |
| 7 | Index | int | |
| 8 | Len | int |
Overload 11: TMtxVecInt *Add(TMtxVecInt *X, TMtxVecInt *Y, const int Z);
Compute X + Y + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | Y | TMtxVecInt * | |
| 3 | Z | const int |
Overload 12: TMtxVecInt *Add(TMtxVecInt *X, int XIndex, TMtxVecInt *Y, int YIndex, const int Z, int Index, int Len);
Compute X + Y + zScalar on sub arrays
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt * | |
| 2 | XIndex | int | |
| 3 | Y | TMtxVecInt * | |
| 4 | YIndex | int | |
| 5 | Z | const int | |
| 6 | Index | int | |
| 7 | Len | int |