Vector.op_Addition Operator

Overload List

#SignatureDescription
1Vector op_Addition(TCplx Left, Vector Right)Add left to all elements in Right and return result.
2Vector op_Addition(TMtxVec Left, Vector Right)Add coresponding elements in Left and Right.
3Vector op_Addition(Vector Left, TCplx Right)Add Right to all elements in Left and return result.
4Vector op_Addition(Vector Left, TMtxVec Right)Add coresponding elements in Left and Right.
5Vector op_Addition(Vector Left, Vector Right)Add coresponding elements in Left and Right.
6Vector op_Addition(Vector Left, Double Right)Add Right to all elements in Left and return result.
7Vector op_Addition(Double Left, Vector Right)Add left to all elements in Right and return result.

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

Add left to all elements in Right and return result.

#NameTypeDescription
1LeftTCplxscalar
2RightVector

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

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

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftTMtxVecsource TVec or TMtx
2RightVector

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

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

Add Right to all elements in Left and return result.

#NameTypeDescription
1LeftVector
2RightTCplxscalar

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

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

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftVector
2RightTMtxVecsource TVec or TMtx

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

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

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftVector
2RightVector

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

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

Add Right to all elements in Left and return result.

#NameTypeDescription
1LeftVector
2RightDoublescalar

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

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

Add left to all elements in Right and return result.

#NameTypeDescription
1LeftDoublescalar
2RightVector

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