Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void CopyFromArray(TCplx[] Src) | Copies array content. |
| └ indexed: void CopyFromArray(TCplx[] Src, Int32 Index, Int32 Len) | ||
| 2 | void CopyFromArray(Double[] Src) | Copies array content. |
| └ indexed: void CopyFromArray(Double[] Src, Int32 Index, Int32 Len) | ||
| 3 | void CopyFromArray(Single[] Src) | Copies array content. |
| └ indexed: void CopyFromArray(Single[] Src, Int32 Index, Int32 Len) |
Overload 1: void CopyFromArray(TCplx[] Src)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplx[] |
Result: stored in self (calling object)
Sets the size of the object to match the size of the Src array and copies the contents in to the calling object.
Indexed: void CopyFromArray(TCplx[] Src, Int32 Index, Int32 Len)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TCplx[] | |
| 2 | Index | Int32 | start index |
| 3 | Len | Int32 | element count |
Result: stored in self (calling object)
Copies Len elements from the Src array and stores them in the calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.
Overload 2: void CopyFromArray(Double[] Src)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Double[] |
Result: stored in self (calling object)
Sets the size of the object to match the size of the Src array and copies the contents in to the calling object.
Indexed: void CopyFromArray(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)
Copies Len elements from the Src array and stores them in the calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.
Overload 3: void CopyFromArray(Single[] Src)
Copies array content.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | Single[] |
Result: stored in self (calling object)
Sets the size of the object to match the size of the Src array and copies the contents in to the calling object.
Indexed: void CopyFromArray(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)
Copies Len elements from the Src array and stores them in the calling object starting at location Index. The value of the Complex property and size of the calling objects are not modified.