Vector.op_Subtraction Operator

Overload List

#SignatureDescription
1Vector op_Subtraction(TCplx Left, Vector Right)Subtract all elements in Right from Left.
2Vector op_Subtraction(TMtxVec Left, Vector Right)Subtract coresponding elements in Right from Left.
3Vector op_Subtraction(Vector Left, TCplx Right)Subtract Right from all elements in Left.
4Vector op_Subtraction(Vector Left, TMtxVec Right)Subtract coresponding elements in Right from Left.
5Vector op_Subtraction(Vector Left, Vector Right)Subtract coresponding elements in Right from Left.
6Vector op_Subtraction(Vector Left, Double Right)Subtract Right from all elements in Left.
7Vector op_Subtraction(Double Left, Vector Right)Subtract all elements in Right from Left.

Overload 1: Vector op_Subtraction(TCplx Left, Vector Right)

Subtract all elements in Right from Left.

#NameTypeDescription
1LeftTCplxscalar
2RightVector

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

Overload 2: Vector op_Subtraction(TMtxVec Left, Vector Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftTMtxVecsource TVec or TMtx
2RightVector

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

Overload 3: Vector op_Subtraction(Vector Left, TCplx Right)

Subtract Right from all elements in Left.

#NameTypeDescription
1LeftVector
2RightTCplxscalar

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

Overload 4: Vector op_Subtraction(Vector Left, TMtxVec Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftVector
2RightTMtxVecsource TVec or TMtx

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

Overload 5: Vector op_Subtraction(Vector Left, Vector Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftVector
2RightVector

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

Overload 6: Vector op_Subtraction(Vector Left, Double Right)

Subtract Right from all elements in Left.

#NameTypeDescription
1LeftVector
2RightDoublescalar

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

Overload 7: Vector op_Subtraction(Double Left, Vector Right)

Subtract all elements in Right from Left.

#NameTypeDescription
1LeftDoublescalar
2RightVector

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