TMtxSmallInt.Multiply Method

Overload List

#SignatureDescription
1function Multiply(const Src: TMtxVecInt): TMtxVecInt;Multiply Src elements with calling vector elements.
└ indexed: function Multiply(const Src: TMtxVecInt; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
2function Multiply(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;Multiplies coresponding elements in Src2 with Src1.
3function Multiply(const Src: TMtxVecInt; Value: Integer): TMtxVecInt;Multiply integer Value with all Src elements.
└ indexed: function Multiply(const Src: TMtxVecInt; Value: Integer; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;
4function Multiply(Value: Integer): TMtxVecInt;Multiply integer value with all calling vector elements.
└ indexed: function Multiply(Value: Integer; Index: Integer; Len: Integer): TMtxVecInt;
5function Multiply(const Src1: TMtxVecInt; const Src2: TMtxVecInt; SrcIndex1: Integer; SrcIndex2: Integer; Index: Integer; Len: Integer): TMtxVecInt;Multiply coresponding elements in Src2 with Src1.

Overload 1: function Multiply(const Src: TMtxVecInt): TMtxVecInt;

Multiply Src elements with calling vector elements.

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt

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

Indexed: function Multiply(const Src: TMtxVecInt; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Mjultiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements.

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt
2SrcIndexIntegersource start index
3IndexIntegerstart index
4LenIntegerelement count

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

Remarks:

Multiply Src elements [SrcIndex..SrcIndex+Len-1] with calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.

Overload 2: function Multiply(const Src1: TMtxVecInt; const Src2: TMtxVecInt): TMtxVecInt;

Multiplies coresponding elements in Src2 with Src1.

#NameTypeDescription
1Src1TMtxVecIntsource TVecInt or TMtxInt
2Src2TMtxVecIntsource TVecInt or TMtxInt

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

Returns: the result of multipliing Src2 values with coresponding Src1 values.

Overload 3: function Multiply(const Src: TMtxVecInt; Value: Integer): TMtxVecInt;

Multiply integer Value with all Src elements.

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt
2ValueInteger

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

Remarks:

Multiply integer Value with all Src elements and store the results in calling vector. Size of calling vector is adjusted automatically.

Indexed: function Multiply(const Src: TMtxVecInt; Value: Integer; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Multiply integer value with Src vector elements [SrcIndex..SrcIndex+Len-1].

#NameTypeDescription
1SrcTMtxVecIntsource TVecInt or TMtxInt
2ValueInteger
3SrcIndexIntegersource start index
4IndexIntegerstart index
5LenIntegerelement count

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

Remarks:

Store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.

Overload 4: function Multiply(Value: Integer): TMtxVecInt;

Multiply integer value with all calling vector elements.

#NameTypeDescription
1ValueInteger

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

Indexed: function Multiply(Value: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Multiply integer value with calling vector elements [Index..Index+Len-1].

#NameTypeDescription
1ValueInteger
2IndexIntegerstart index
3LenIntegerelement count

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

Remarks:

An exception is raised if array borders are overrun.

Overload 5: function Multiply(const Src1: TMtxVecInt; const Src2: TMtxVecInt; SrcIndex1: Integer; SrcIndex2: Integer; Index: Integer; Len: Integer): TMtxVecInt;

Multiply coresponding elements in Src2 with Src1.

#NameTypeDescription
1Src1TMtxVecIntsource TVecInt or TMtxInt
2Src2TMtxVecIntsource TVecInt or TMtxInt
3SrcIndex1Integer
4SrcIndex2Integer
5IndexIntegerstart index
6LenIntegerelement count

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

Remarks:

Multiply Src1 elements [Src1Index..Src1Index+Len-1] with corrresponding Src2 elements [Src2Index..Src2ndex+Len] and store the results in calling vector elements [Index..Index+Len-1]. An exception is raised if array borders are overrun.