Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt *Copy(TMtxVecInt *Src); | Copy object values. |
| 2 | TMtxVecInt *Copy(TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Copy Src elements [SrcIndex]..[SrcIndex+Len-1] in the calling object elements [Index]..[Index+Len-1]. |
| 3 | void Copy(TMtxVecInt *Src, TMtxVecInt *Dst, int SrcIndex, int Index, int Len); | |
| 4 | TMtxInt *Copy(TMtxInt *Mtx, int MtxRow, int MtxCol, int Row, int Col, int NrRows, int NrCols, bool Transpose = false); | Copy the Mtx elements [MtxRow,MtxCol]..[MtxRow+NrRows-1,MtxCol+NrCols-1] to the calling matrix elements [Row,Col],,[Row+NrRows-1,Col+NrCols-1]. |
Overload 1: TMtxVecInt *Copy(TMtxVecInt *Src);
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * |
Remarks:
Copy each of Vec elements to the calling object. The Size property of the calling object is set implicitly to match Vec object.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 2: TMtxVecInt *Copy(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Copy Src elements [SrcIndex]..[SrcIndex+Len-1] in the calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Calling vector TMtxByte::Size must be set explicitly. An exception is raised if array borders are overrun or underrun.
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 3: void Copy(TMtxVecInt *Src, TMtxVecInt *Dst, int SrcIndex, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | Dst | TMtxVecInt * | |
| 3 | SrcIndex | int | |
| 4 | Index | int | |
| 5 | Len | int |
Declared in Dew::Math::TMtxVecInt · Dew.Math/AbstractMtxVecInt.h · Cross-compiler
Overload 4: TMtxInt *Copy(TMtxInt *Mtx, int MtxRow, int MtxCol, int Row, int Col, int NrRows, int NrCols, bool Transpose = false);
Copy the Mtx elements [MtxRow,MtxCol]..[MtxRow+NrRows-1,MtxCol+NrCols-1] to the calling matrix elements [Row,Col],,[Row+NrRows-1,Col+NrCols-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtxInt * | |
| 2 | MtxRow | int | |
| 3 | MtxCol | int | |
| 4 | Row | int | |
| 5 | Col | int | |
| 6 | NrRows | int | |
| 7 | NrCols | int | |
| 8 | Transpose = false | bool |
Remarks:
An exception is raised if TMtxByte::ConditionCheck is true and bounds are overrun. If Transpose is true, the matrix is transposed as well.
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler