Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec *Copy(TMtxVec *Vec) const; | Copy object values. |
| 2 | TMtxVec *Copy(TMtxVec *Src, const TMtxFloatPrecision dstFloatPrecision) const; | Copy object values. |
| 3 | TMtxVec *Copy(TMtxVec *Vec, int VecIndex, int Index, int Len) const; | Copy Vec elements [VecIndex]..[VecIndex+Len-1] in the calling object elements [Index]..[Index+Len-1]. |
| 4 | TMtxVec *Copy(TVecInt *Src, const TMtxFloatPrecision dstFloatPrecision) const; | Copy and convert values from TVecInt. |
| 5 | TMtxVec *Copy(TVecInt *Src) const; | Copy and convert values from TVecInt. |
| 6 | TMtxVec *Copy(TVecInt *Src, int SrcIndex, int Index, int Len) const; | Copy and convert values from TVecInt at indexes [SrcIndex]...[SrcIndex+Len-1]. |
| 7 | TVec *Copy(TMtxVec *Vec1, TMtxVec *Vec2) const; | Copies values from Vec1 and Vec2 (concatenate). |
Overload 1: TMtxVec *Copy(TMtxVec *Vec) const;
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVec * |
Copy each of Vec elements to the calling object. Size and Vector::Complex properties of the calling object are set implicitly to match Vec object.
Overload 2: TMtxVec *Copy(TMtxVec *Src, const TMtxFloatPrecision dstFloatPrecision) const;
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxVec * | |
| 2 | dstFloatPrecision | const TMtxFloatPrecision |
Copy each of Src elements to the calling object. Size and Vector::Complex properties of the calling object are set implicitly to match Src object.
Overload 3: TMtxVec *Copy(TMtxVec *Vec, int VecIndex, int Index, int Len) const;
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 Vector::Complex properties must be set explicitly. An exception is raised if Vector::ConditionCheck is True and array borders are overrun or underrun.
Overload 4: TMtxVec *Copy(TVecInt *Src, const TMtxFloatPrecision dstFloatPrecision) const;
Copy and convert values from TVecInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * | |
| 2 | dstFloatPrecision | const TMtxFloatPrecision |
Applies appropriate conversion and copy data from TVecInt.
Overload 5: TMtxVec *Copy(TVecInt *Src) const;
Copy and convert values from TVecInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * |
Applies appropriate conversion and copy data from TVecInt. Existing value of FloatPrecision is preserved.
Overload 6: TMtxVec *Copy(TVecInt *Src, int SrcIndex, int Index, int Len) const;
Copy and convert values from TVecInt at indexes [SrcIndex]...[SrcIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * | |
| 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 Vector::Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun.
Overload 7: TVec *Copy(TMtxVec *Vec1, TMtxVec *Vec2) const;
Copies values from Vec1 and Vec2 (concatenate).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec1 | TMtxVec * | |
| 2 | Vec2 | TMtxVec * |
Copy each of Vec1 and Vec2 elements to the calling vector (concatenate). The Vector::Length and Vector::Complex properties of the calling vector are set implicitly to match Vec1 and Vec2 vector.