Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector op_Division(TCplx Left, Vector Right) | Divide Left with all elements Right. |
| 2 | Vector op_Division(TMtxVec Left, Vector Right) | Divide all elements in Left with coresponding elements in Right. |
| 3 | Vector op_Division(Vector Left, TCplx Right) | Divide all elements in Left with Right. |
| 4 | Vector op_Division(Vector Left, TMtxVec Right) | Divide all elements in Left with coresponding elements in Right. |
| 5 | Vector op_Division(Vector Left, Vector Right) | Divide all elements in Left with coresponding elements in Right. |
| 6 | Vector op_Division(Vector Left, Double Right) | Divide all elements in Left with Right. |
| 7 | Vector op_Division(Double Left, Vector Right) | Divide Left with all elements Right. |
Overload 1: Vector op_Division(TCplx Left, Vector Right)
Divide Left with all elements Right.
Result: stored in self (calling object), returns self for chaining
Overload 2: Vector op_Division(TMtxVec Left, Vector Right)
Divide all elements in Left with coresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 3: Vector op_Division(Vector Left, TCplx Right)
Divide all elements in Left with Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: Vector op_Division(Vector Left, TMtxVec Right)
Divide all elements in Left with coresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 5: Vector op_Division(Vector Left, Vector Right)
Divide all elements in Left with coresponding elements in Right.
Result: stored in self (calling object), returns self for chaining
Overload 6: Vector op_Division(Vector Left, Double Right)
Divide all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Vector | |
| 2 | Right | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 7: Vector op_Division(Double Left, Vector Right)
Divide Left with all elements Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | Vector |
Result: stored in self (calling object), returns self for chaining