MatrixInt.Multiply Operator

Overload List

#SignatureDescription
1class operator Multiply(const Left: MatrixInt; const Right: MatrixInt): MatrixInt;Multiply all elements in Left with corresponding elements in Right.
2class operator Multiply(const Left: MatrixInt; const Right: TMtxInt): MatrixInt;Multiply all elements in Left with corresponding elements in Right.
3class operator Multiply(const Left: MatrixInt; const Right: Integer): MatrixInt;Multiply all elements in Left with Right.
4class operator Multiply(const Left: TMtxInt; const Right: MatrixInt): MatrixInt;Multiply all elements in Left with corresponding elements in Right.
5class operator Multiply(const Left: Integer; const Right: MatrixInt): MatrixInt;Multiply all elements in Right with Left.

Overload 1: class operator Multiply(const Left: MatrixInt; const Right: MatrixInt): MatrixInt;

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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

Overload 2: class operator Multiply(const Left: MatrixInt; const Right: TMtxInt): MatrixInt;

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

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

Overload 3: class operator Multiply(const Left: MatrixInt; const Right: Integer): MatrixInt;

Multiply all elements in Left with Right.

#NameTypeDescription
1LeftMatrixInt
2RightInteger

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

Overload 4: class operator Multiply(const Left: TMtxInt; const Right: MatrixInt): MatrixInt;

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

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

Overload 5: class operator Multiply(const Left: Integer; const Right: MatrixInt): MatrixInt;

Multiply all elements in Right with Left.

#NameTypeDescription
1LeftInteger
2RightMatrixInt

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