Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVecBase *CopyToArray(DewArray<double> &Dst); | Copy values to Dst array. The size of the array is set automatically. |
| 2 | TMtxVecBase *CopyToArray(DewArray<double> &Dst, int DstIndex, int Index, int Len); | Copy real or complex values from the calling object [Index]..[Index+len-1] to the Dst array at positions [DstIndex]...[DstIndex+Len-1]. |
| 3 | TMtxVecBase *CopyToArray(DewArray<float> &Dst); | Copies the calling object data to an array of single precision floating point data. |
| 4 | TMtxVecBase *CopyToArray(DewArray<float> &Dst, int DstIndex, int Index, int 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]. |
Overload 1: TMtxVecBase *CopyToArray(DewArray<double> &Dst);
Copy values to Dst array. The size of the array is set automatically.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<double> & |
If the calling object is complex, the size of the Dst array will be equal to 2*TMtxVecSample::Length. If the calling object is not complex an exception will be raised.
Overload 2: TMtxVecBase *CopyToArray(DewArray<double> &Dst, int DstIndex, int Index, int 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 | DewArray<double> & | |
| 2 | DstIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
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 3: TMtxVecBase *CopyToArray(DewArray<float> &Dst);
Copies the calling object data to an array of single precision floating point data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<float> & |
Any values exceeding the range are clipped.
Overload 4: TMtxVecBase *CopyToArray(DewArray<float> &Dst, int DstIndex, int Index, int 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 | DewArray<float> & | |
| 2 | DstIndex | int | |
| 3 | Index | int | |
| 4 | Len | int |
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.