MatrixInt.op_Subtraction Operator

Overload List

#SignatureDescription
1MatrixInt op_Subtraction(MatrixInt Left, MatrixInt Right)Subtract coresponding elements in Right from Left.
2MatrixInt op_Subtraction(MatrixInt Left, TMtxInt Right)Subtract coresponding elements in Right from Left.
3MatrixInt op_Subtraction(MatrixInt Left, Int32 Right)Subtract Right from all elements in Left.
4MatrixInt op_Subtraction(TMtxInt Left, MatrixInt Right)Subtract coresponding elements in Right from Left.
5MatrixInt op_Subtraction(Int32 Left, MatrixInt Right)Subtract all elements in Right from Left.

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

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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

Overload 2: MatrixInt op_Subtraction(MatrixInt Left, TMtxInt Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

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

Overload 3: MatrixInt op_Subtraction(MatrixInt Left, Int32 Right)

Subtract Right from all elements in Left.

#NameTypeDescription
1LeftMatrixInt
2RightInt32

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

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

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

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

Overload 5: MatrixInt op_Subtraction(Int32 Left, MatrixInt Right)

Subtract all elements in Right from Left.

#NameTypeDescription
1LeftInt32
2RightMatrixInt

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