Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector op_Subtraction(TCplx Left, Vector Right) | Subtract all elements in Right from Left. |
| 2 | Vector op_Subtraction(TMtxVec Left, Vector Right) | Subtract coresponding elements in Right from Left. |
| 3 | Vector op_Subtraction(Vector Left, TCplx Right) | Subtract Right from all elements in Left. |
| 4 | Vector op_Subtraction(Vector Left, TMtxVec Right) | Subtract coresponding elements in Right from Left. |
| 5 | Vector op_Subtraction(Vector Left, Vector Right) | Subtract coresponding elements in Right from Left. |
| 6 | Vector op_Subtraction(Vector Left, Double Right) | Subtract Right from all elements in Left. |
| 7 | Vector 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.
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.
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.
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.
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.
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Vector | |
| 2 | Right | Double | scalar |
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.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | Vector |
Result: stored in self (calling object), returns self for chaining