Overload List
| # | Signature | Description |
|---|---|---|
| 1 | clVector op_Multiply(TCplx Left, clVector Right) | Multiply all elements in Right with Left. |
| 2 | clVector op_Multiply(TOpenCLMtxVec Left, clVector Right) | Multiply all elements in Left with corresponding elements in Right. |
| 3 | clVector op_Multiply(clVector Left, TCplx Right) | Multiply all elements in Left with Right. |
| 4 | clVector op_Multiply(clVector Left, TOpenCLMtxVec Right) | Multiply all elements in Left with corresponding elements in Right. |
| 5 | clVector op_Multiply(clVector Left, clVector Right) | Multiply all elements in Left with corresponding elements in Right |
| 6 | clVector op_Multiply(clVector Left, Double Right) | Multiply all elements in Left with Right. |
| 7 | clVector op_Multiply(Double Left, clVector Right) | Multiply all elements in Right with Left. |
Overload 1: clVector op_Multiply(TCplx Left, clVector Right)
Multiply all elements in Right with Left.
Result: stored in self (calling object), returns self for chaining
Overload 2: clVector op_Multiply(TOpenCLMtxVec Left, clVector Right)
Multiply all elements in Left with corresponding elements in 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_Multiply(clVector Left, TCplx Right)
Multiply all elements in Left with Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: clVector op_Multiply(clVector Left, TOpenCLMtxVec Right)
Multiply all elements in Left with corresponding elements in 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_Multiply(clVector Left, clVector Right)
Multiply all elements in Left with corresponding elements in Right
Result: stored in self (calling object), returns self for chaining
Overload 6: clVector op_Multiply(clVector Left, Double Right)
Multiply all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clVector | |
| 2 | Right | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 7: clVector op_Multiply(Double Left, clVector Right)
Multiply all elements in Right with Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | clVector |
Result: stored in self (calling object), returns self for chaining