MatrixInt.op_Multiply Operator

Overload List

#SignatureDescription
1MatrixInt op_Multiply(MatrixInt Left, MatrixInt Right)Multiply all elements in Left with corresponding elements in Right.
2MatrixInt op_Multiply(MatrixInt Left, TMtxInt Right)Multiply all elements in Left with corresponding elements in Right.
3MatrixInt op_Multiply(MatrixInt Left, Int32 Right)Multiply all elements in Left with Right.
4MatrixInt op_Multiply(TMtxInt Left, MatrixInt Right)Multiply all elements in Left with corresponding elements in Right.
5MatrixInt op_Multiply(Int32 Left, MatrixInt Right)Multiply all elements in Right with Left.

Overload 1: MatrixInt op_Multiply(MatrixInt Left, MatrixInt Right)

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: MatrixInt op_Multiply(MatrixInt Left, TMtxInt Right)

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: MatrixInt op_Multiply(MatrixInt Left, Int32 Right)

Multiply all elements in Left with Right.

#NameTypeDescription
1LeftMatrixInt
2RightInt32

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

Overload 4: MatrixInt op_Multiply(TMtxInt Left, MatrixInt Right)

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: MatrixInt op_Multiply(Int32 Left, MatrixInt Right)

Multiply all elements in Right with Left.

#NameTypeDescription
1LeftInt32
2RightMatrixInt

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