Vector.MulI Method

Overload List

#SignatureDescription
1function MulI: TMtxVec;Multiply elements by imaginary unit I.
└ indexed: function MulI(Index: Integer; Len: Integer): TMtxVec;
2function MulI(const X: TMtxVec): TMtxVec;Multiply X elements with I.
└ indexed: function MulI(const X: TMtxVec; XIndex: Integer; Index: Integer; Len: Integer): TMtxVec;

Overload 1: function MulI: TMtxVec;

Multiply elements by imaginary unit I.

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

Remarks:

Multiply calling vector elements with "I".

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

Multiply 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: TMtxVec): TMtxVec;

Multiply X elements with I.

#NameTypeDescription
1XTMtxVec

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

Remarks:

Store the result in the calling object.

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

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

#NameTypeDescription
1XTMtxVec
2XIndexIntegerX start index
3IndexIntegerstart index
4LenIntegerelement count

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

Remarks:

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