Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void Copy(TMtxInt *Src) const; | |
| 2 | void Copy(TVecInt *Src) const; | |
| 3 | void Copy(TMtx *Src) const; | |
| 4 | void Copy(TVec *Src) const; | |
| 5 | TOpenCLMtxVec *Copy(TOpenCLMtxVec *Vec) const; | Copy object values. |
| 6 | TOpenCLMtxVec *Copy(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len) const; | Copy Vec elements [VecIndex]..[VecIndex+Len-1] in the calling object elements [Index]..[Index+Len-1]. |
Overload 1: void Copy(TMtxInt *Src) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtxInt * |
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 2: void Copy(TVecInt *Src) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVecInt * |
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 3: void Copy(TMtx *Src) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TMtx * |
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 4: void Copy(TVec *Src) const;
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TVec * |
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 5: TOpenCLMtxVec *Copy(TOpenCLMtxVec *Vec) const;
Copy object values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * |
Remarks:
Copy each of Vec elements to the calling object. Size and clMatrix::Complex properties of the calling object are set implicitly to match Vec object.
See Also: clMatrix::Assign
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 6: TOpenCLMtxVec *Copy(TOpenCLMtxVec *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 | TOpenCLMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
Remarks:
Size and clMatrix::Complex properties must be set explicitly. An exception is raised if array borders are overrun or underrun.
Declared in Dew::Math::clMatrix · Dew.Math/clMtxExpr.h · Cross-compiler