Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *Copy(TMtxVec *Src); | Copy object values. |
| 2 | TMtxVec *Copy(TMtxVec *Src, const TMtxFloatPrecision dstFloatPrecision); | Copy object values. |
| 3 | TMtxVec *Copy(TMtxVec *Vec, int VecIndex, int Index, int Len); | Copy Vec elements [VecIndex]..[VecIndex+Len-1] in the calling object elements [Index]..[Index+Len-1]. |
| 4 | TMtxVec *Copy(TMtxVecInt *Src, int SrcIndex, int Index, int Len); | Copy and convert values from TVecInt at indexes [SrcIndex]...[SrcIndex+Len-1]. |
| 5 | void Copy(TMtxVec *Src, TMtxVec *Dst, const int SrcIdx, const int DstIdx, const int Len); | |
| 6 | TMtx *Copy(TMtx *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]. |
| 7 | TMtxVec *Copy(TMtxVecInt *Src, const TMtxFloatPrecision dstFloatPrecision); |
Overload 1: TMtxVec *Copy(TMtxVec *Src);
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * |
Copy each of Vec elements to the calling object. Size and TMtx::Complex properties of the calling object are set implicitly to match Vec object.
Overload 2: TMtxVec *Copy(TMtxVec *Src, const TMtxFloatPrecision dstFloatPrecision);
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | dstFloatPrecision | const TMtxFloatPrecision |
Copy each of Vec elements to the calling object. Size and TMtx::Complex properties of the calling object are set implicitly to match Vec object.
Overload 3: TMtxVec *Copy(TMtxVec *Vec, int VecIndex, int Index, int Len);
Copy Vec elements [VecIndex]..[VecIndex+Len-1] in the calling object elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Size and TMtx::Complex properties must be set explicitly. An exception is raised if TMtx::ConditionCheck is True and array borders are overrun or underrun.
Overload 4: TMtxVec *Copy(TMtxVecInt *Src, int SrcIndex, int Index, int Len);
Copy and convert values from TVecInt at indexes [SrcIndex]...[SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | SrcIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Applies appropriate conversion and copy data from TVecInt. The results are stored in calling object elements [Index]...[Index+Len-1]. Size and TMtx::Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun.
Overload 5: void Copy(TMtxVec *Src, TMtxVec *Dst, const int SrcIdx, const int DstIdx, const int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | Dst | TMtxVec * | |
| 3 | SrcIdx | const int | |
| 4 | DstIdx | const int | |
| 5 | Len | const int |
Overload 6: TMtx *Copy(TMtx *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 | TMtx * | |
| 2 | MtxRow | int | |
| 3 | MtxCol | int | |
| 4 | Row | int | |
| 5 | Col | int | |
| 6 | NrRows | int | |
| 7 | NrCols | int | |
| 8 | Transpose = false | bool |
An exception is raised if TMtx::ConditionCheck is true and bounds are overrun. If Transpose is true, the matrix is transposed as well. An exception is raised if TMtx::ConditionCheck is true and Complex properties of the calling matrix and Mtx do not match.
Overload 7: TMtxVec *Copy(TMtxVecInt *Src, const TMtxFloatPrecision dstFloatPrecision);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVecInt * | |
| 2 | dstFloatPrecision | const TMtxFloatPrecision |