Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TOpenCLMtxVec CopyCplxFromArray(Double[] Src) | Copies array content. |
| └ indexed: TOpenCLMtxVec CopyCplxFromArray(Double[] Src, Int32 Index, Int32 Len) | ||
| 2 | TOpenCLMtxVec CopyCplxFromArray(Single[] Src) | Copies array content. |
| └ indexed: TOpenCLMtxVec CopyCplxFromArray(Single[] Src, Int32 Index, Int32 Len) |
Overload 1: TOpenCLMtxVec CopyCplxFromArray(Double[] Src)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Double[] |
Result: stored in self (calling object), returns self for chaining
Sets the size of the object to match the size of the Src array and copies the contents in to the calling object. The complex property is set to True.
Indexed: TOpenCLMtxVec CopyCplxFromArray(Double[] Src, Int32 Index, Int32 Len)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Double[] | |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Copies Len complex elements from the Src array and stores them in the complex calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.
Overload 2: TOpenCLMtxVec CopyCplxFromArray(Single[] Src)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Single[] |
Result: stored in self (calling object), returns self for chaining
Sets the size of the object to match the size of the Src array and copies the contents in to the calling object. The complex property is set to True.
Indexed: TOpenCLMtxVec CopyCplxFromArray(Single[] Src, Int32 Index, Int32 Len)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Single[] | |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Copies Len complex elements from the Src array and stores them in the complex calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.