Overload List
| # | Signature | Description |
|---|---|---|
| 1 | clVector op_Addition(TCplx Left, clVector Right) | Add left to all elements in Right and return result. |
| 2 | clVector op_Addition(TOpenCLMtxVec Left, clVector Right) | Add coresponding elements in Left and Right. |
| 3 | clVector op_Addition(clVector Left, TCplx Right) | Add Right to all elements in Left and return result. |
| 4 | clVector op_Addition(clVector Left, TOpenCLMtxVec Right) | Add coresponding elements in Left and Right. |
| 5 | clVector op_Addition(clVector Left, clVector Right) | Add coresponding elements in Left and Right. |
| 6 | clVector op_Addition(clVector Left, Double Right) | Add Right to all elements in Left and return result. |
| 7 | clVector op_Addition(Double Left, clVector Right) | Add left to all elements in Right and return result. |
Overload 1: clVector op_Addition(TCplx Left, clVector Right)
Add left to all elements in Right and return result.
Result: stored in self (calling object), returns self for chaining
Overload 2: clVector op_Addition(TOpenCLMtxVec Left, clVector Right)
Add coresponding elements in Left and Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Right | clVector |
Result: stored in self (calling object), returns self for chaining
Overload 3: clVector op_Addition(clVector Left, TCplx Right)
Add Right to all elements in Left and return result.
Result: stored in self (calling object), returns self for chaining
Overload 4: clVector op_Addition(clVector Left, TOpenCLMtxVec Right)
Add coresponding elements in Left and Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clVector | |
| 2 | Right | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
Result: stored in self (calling object), returns self for chaining
Overload 5: clVector op_Addition(clVector Left, clVector Right)
Add coresponding elements in Left and Right.
Result: stored in self (calling object), returns self for chaining
Overload 6: clVector op_Addition(clVector Left, Double Right)
Add Right to all elements in Left and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clVector | |
| 2 | Right | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 7: clVector op_Addition(Double Left, clVector Right)
Add left to all elements in Right and return result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | clVector |
Result: stored in self (calling object), returns self for chaining