Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecInt CopyToArray(ref TCplx[] Dst) | Copies values from the calling object to the Dst array and converts data to double precision numbers. |
| └ indexed: TMtxVecInt CopyToArray(ref TCplx[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 2 | TMtxVecInt CopyToArray(ref Byte[] Dst) | Copies values from the calling object to the Dst array and converts data to 1 byte unsigned integer numbers. |
| └ indexed: TMtxVecInt CopyToArray(ref Byte[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 3 | TMtxVecInt CopyToArray(ref Double[] Dst) | Copy values to Dst array. The size of the array is set automatically. |
| └ indexed: TMtxVecInt CopyToArray(ref Double[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 4 | TMtxVecInt CopyToArray(ref Int16[] Dst) | Copies values from the calling object to the Dst array and converts data to 2 byte signed integer numbers. |
| └ indexed: TMtxVecInt CopyToArray(ref Int16[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 5 | TMtxVecInt CopyToArray(ref Int32[] Dst) | Copies values from the calling object to the Dst array and converts data to 4 byte signed integer numbers. |
| └ indexed: TMtxVecInt CopyToArray(ref Int32[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 6 | TMtxVecInt CopyToArray(ref Single[] Dst) | Copies the calling object data to an array of single precision floating point data. |
| └ indexed: TMtxVecInt CopyToArray(ref Single[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 7 | TMtxVecInt CopyToArray(ref UInt16[] Dst) | Copies values from the calling object to the Dst array and converts data to 2 byte unsigned integer type. |
| └ indexed: TMtxVecInt CopyToArray(ref UInt16[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) |
Overload 1: TMtxVecInt CopyToArray(ref TCplx[] Dst)
Copies values from the calling object to the Dst array and converts data to double precision numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TCplx[] (ref) |
Result: stored in self (calling object), returns self for chaining
Consecutive elements are converted to real and imaginary parts.
Indexed: TMtxVecInt CopyToArray(ref TCplx[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst integer array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TCplx[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed. The method converts calling object values to double precision floating point values. Consecutive elements are converted to real and imaginary parts.
Overload 2: TMtxVecInt CopyToArray(ref Byte[] Dst)
Copies values from the calling object to the Dst array and converts data to 1 byte unsigned integer numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Byte[] (ref) |
Result: stored in self (calling object), returns self for chaining
Values exceeding the range of 1 byte unsigned integer type are clipped.
Indexed: TMtxVecInt CopyToArray(ref Byte[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst integer array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Byte[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed. Values exceeding the range of 1 byte unsigned integer type are clipped.
Overload 3: TMtxVecInt CopyToArray(ref Double[] Dst)
Copy values to Dst array. The size of the array is set automatically.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Double[] (ref) |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt CopyToArray(ref Double[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Double[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed.
Overload 4: TMtxVecInt CopyToArray(ref Int16[] Dst)
Copies values from the calling object to the Dst array and converts data to 2 byte signed integer numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Int16[] (ref) |
Result: stored in self (calling object), returns self for chaining
Values exceeding the range of a 2 byte signed integer type are clipped.
Indexed: TMtxVecInt CopyToArray(ref Int16[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst integer array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Int16[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed. Values exceeding the range of a 2 byte signed integer type are clipped.
Overload 5: TMtxVecInt CopyToArray(ref Int32[] Dst)
Copies values from the calling object to the Dst array and converts data to 4 byte signed integer numbers.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Int32[] (ref) |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt CopyToArray(ref Int32[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst integer array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Int32[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed. The method converts calling object values to 4 byte signed integers. Values exceeding the range of a 4 byte signed integer type are clipped.
Overload 6: TMtxVecInt CopyToArray(ref Single[] Dst)
Copies the calling object data to an array of single precision floating point data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Single[] (ref) |
Result: stored in self (calling object), returns self for chaining
Any values exceeding the range are clipped.
Indexed: TMtxVecInt CopyToArray(ref Single[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst single precision floating point array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Single[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed.
Overload 7: TMtxVecInt CopyToArray(ref UInt16[] Dst)
Copies values from the calling object to the Dst array and converts data to 2 byte unsigned integer type.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | UInt16[] (ref) |
Result: stored in self (calling object), returns self for chaining
Values exceeding the range of a 2 byte unsigned integer type are clipped.
Indexed: TMtxVecInt CopyToArray(ref UInt16[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy values from the calling object [Index]..[Index+len-1] to the Dst integer array at positions [DstIndex]...[DstIndex+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | UInt16[] (ref) | |
| 2 | DstIndex | Int32 | destination start index |
| 3 | Index | Int32 | start index |
| 4 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The size of the Dst array is not changed. Values exceeding the range of a 2 byte unsigned integer type are clipped.