Overload List
Overload 1: TMtxVecInt *Add(TMtxVecInt *Src1, TMtxVecInt *Src2) const;
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, const int src1Index, const int Src2Index, const int Index, const int Len) const;
Add coresponding elements in Src2 to Src1.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src1 | TMtxVecInt * | |
| 2 | Src2 | TMtxVecInt * | |
| 3 | src1Index | const int | |
| 4 | Src2Index | const int | |
| 5 | Index | const int | |
| 6 | Len | const 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) const;
Add Src elements to calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Overload 4: TMtxVecInt *Add(TMtxVecInt *Src, const int SrcIndex, const int Index, const int Len) const;
Add Src elements [SrcIndex..SrcIndex+Len-1] to calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | const int | |
| 3 | Index | const int | |
| 4 | Len | const 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, const int Value) const;
Add integer Value to all Src elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Value | const 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, const int Value, const int SrcIndex, const int Index, const int Len) const;
Add integer Value to Src 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 |
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(const int Value) const;
Add integer value to all calling vector elements.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Value | const int |
Overload 8: TMtxVecInt *Add(const int Value, const int Index, const int Len) const;
Add integer value to 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.
Overload 9: TMtxVecInt *Add(TMtxVecInt *X, TMtxVecInt *Y, TMtxVecInt *Z) const;
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) const;
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) const;
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) const;
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 |