TOpenCLMatrix.MulI Method

Overload List

#SignatureDescription
1TOpenCLMtxVec MulIMultiply elements by imaginary unit I.
└ indexed: TOpenCLMtxVec MulI(Int32 Index, Int32 Len)
2TOpenCLMtxVec MulI(TOpenCLMtxVec X)Multiply X elements with I and store the result in the calling object.
└ indexed: TOpenCLMtxVec MulI(TOpenCLMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)

Overload 1: TOpenCLMtxVec MulI

Multiply elements by imaginary unit I.

Result: stored in self (calling object), returns self for chaining

Indexed: TOpenCLMtxVec MulI(Int32 Index, Int32 Len)

Multipy calling object elements [Index]..[Index+Len-1] with I in-place.

#NameTypeDescription
1IndexInt32start index
2LenInt32element count

Result: stored in self (calling object), returns self for chaining

Overload 2: TOpenCLMtxVec MulI(TOpenCLMtxVec X)

Multiply X elements with I and store the result in the calling object.

#NameTypeDescription
1XTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix

Result: stored in self (calling object), returns self for chaining

Indexed: TOpenCLMtxVec MulI(TOpenCLMtxVec X, Int32 XIndex, Int32 Index, Int32 Len)

Multipy X elements [XIndex]..[XIndex+Len-1] with I.

#NameTypeDescription
1XTOpenCLMtxVecsource TOpenCLVector or TOpenCLMatrix
2XIndexInt32X start index
3IndexInt32start index
4LenInt32element count

Result: stored in self (calling object), returns self for chaining

Remarks:

Xtore the result in the calling object at locations [Index]..[Index+Len-1].