clMatrix.MulI Method

Overload List

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

Overload 1: function MulI: TOpenCLMtxVec;

Multiply elements by imaginary unit I.

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

Indexed: function MulI(Index: Integer; Len: Integer): TOpenCLMtxVec;

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

#NameTypeDescription
1IndexIntegerstart index
2LenIntegerelement count

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

Overload 2: function MulI(const X: TOpenCLMtxVec): TOpenCLMtxVec;

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

#NameTypeDescription
1XTOpenCLMtxVec

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

Indexed: function MulI(const X: TOpenCLMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

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

#NameTypeDescription
1XTOpenCLMtxVec
2XIndexIntegerX start index
3IndexIntegerstart index
4LenIntegerelement 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].