Matrix.op_Addition Operator

Overload List

#SignatureDescription
1Matrix op_Addition(Matrix Left, Matrix Right)Adds Left to Right and returns result.
2Matrix op_Addition(Matrix Left, TCplx Right)Adds Left to Right and returns result.
3Matrix op_Addition(Matrix Left, TMtxVec Right)Adds Left to Right and returns result.
4Matrix op_Addition(Matrix Left, Double Right)Adds Left to Right and returns result.
5Matrix op_Addition(TCplx Left, Matrix Right)Adds Left to Right and returns result.
6Matrix op_Addition(TMtxVec Left, Matrix Right)Adds Left to Right and returns result.
7Matrix op_Addition(Double Left, Matrix Right)Adds Left to Right and returns result.

Overload 1: Matrix op_Addition(Matrix Left, Matrix Right)

Adds Left to Right and returns result.

#NameTypeDescription
1LeftMatrix
2RightMatrix

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

Overload 2: Matrix op_Addition(Matrix Left, TCplx Right)

Adds Left to Right and returns result.

#NameTypeDescription
1LeftMatrix
2RightTCplxscalar

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

Overload 3: Matrix op_Addition(Matrix Left, TMtxVec Right)

Adds Left to Right and returns result.

#NameTypeDescription
1LeftMatrix
2RightTMtxVecsource TVec or TMtx

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

Overload 4: Matrix op_Addition(Matrix Left, Double Right)

Adds Left to Right and returns result.

#NameTypeDescription
1LeftMatrix
2RightDoublescalar

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

Overload 5: Matrix op_Addition(TCplx Left, Matrix Right)

Adds Left to Right and returns result.

#NameTypeDescription
1LeftTCplxscalar
2RightMatrix

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

Overload 6: Matrix op_Addition(TMtxVec Left, Matrix Right)

Adds Left to Right and returns result.

#NameTypeDescription
1LeftTMtxVecsource TVec or TMtx
2RightMatrix

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

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

Adds Left to Right and returns result.

#NameTypeDescription
1LeftDoublescalar
2RightMatrix

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