Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecBase CopyToArray(ref Double[] Dst) | Copy values to Dst array. The size of the array is set automatically. |
| └ indexed: TMtxVecBase CopyToArray(ref Double[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) | ||
| 2 | TMtxVecBase CopyToArray(ref Single[] Dst) | Copies the calling object data to an array of single precision floating point data. |
| └ indexed: TMtxVecBase CopyToArray(ref Single[] Dst, Int32 DstIndex, Int32 Index, Int32 Len) |
Overload 1: TMtxVecBase CopyToArray(ref Double[] Dst)
Copy values to Dst array. The size of the array is set automatically.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | Double[] (ref) |
Returns: TMtxVecBase
If the calling object is complex, the size of the Dst array will be equal to 2*Dew.Math.TMtxVecBase.Length. If the calling object is not complex an exception will be raised.
Indexed: TMtxVecBase CopyToArray(ref Double[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy real or complex 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 |
Returns: TMtxVecBase
The size of the Dst array is not changed. If the calling object is complex, the Index and Len parameters define the number of complex elements.
Overload 2: TMtxVecBase 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) |
Returns: TMtxVecBase
Any values exceeding the range are clipped.
Indexed: TMtxVecBase CopyToArray(ref Single[] Dst, Int32 DstIndex, Int32 Index, Int32 Len)
Copy real or complex 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 |
Returns: TMtxVecBase
The size of the Dst array is not changed. If the calling object is complex, the Index and Len parameters define the number of complex elements.