TOpenCLMatrix.CopyToArray Method

Overload List

#SignatureDescription
1void CopyToArray(ref TCplx[] Dst)Copies calling object data to array.
2void CopyToArray(ref Double[] Dst)Copies calling object data to array.
3void CopyToArray(ref Int32[] Dst)Copies calling object data to array.
└ indexed: void CopyToArray(ref Int32[] Dst, Int32 Index, Int32 Len)
4void CopyToArray(ref Single[] Dst)Copies calling object data to array.

Overload 1: void CopyToArray(ref TCplx[] Dst)

Copies calling object data to array.

#NameTypeDescription
1DstTCplx[] (ref)

Result: stored in self (calling object)

Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length/2, if the Complex is false.

Overload 2: void CopyToArray(ref Double[] Dst)

Copies calling object data to array.

#NameTypeDescription
1DstDouble[] (ref)

Result: stored in self (calling object)

Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.

Overload 3: void CopyToArray(ref Int32[] Dst)

Copies calling object data to array.

#NameTypeDescription
1DstInt32[] (ref)

Result: stored in self (calling object)

Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.

Indexed: void CopyToArray(ref Int32[] Dst, Int32 Index, Int32 Len)

Copies calling object data to array.

#NameTypeDescription
1DstInt32[] (ref)
2IndexInt32start index
3LenInt32element count

Result: stored in self (calling object)

Remarks:

Copies Len elements from the calling object starting at Index to Dst array. The size of the Dst array is set to Len or Len*2, if the Complex is true.

Overload 4: void CopyToArray(ref Single[] Dst)

Copies calling object data to array.

#NameTypeDescription
1DstSingle[] (ref)

Result: stored in self (calling object)

Remarks:

Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.