Overload List
| # | Signature | Description |
|---|---|---|
| 1 | clMatrix op_Multiply(TCplx Left, clMatrix Right) | Multiply all elements in Right with Left. |
| 2 | clMatrix op_Multiply(TOpenCLMtxVec Left, clMatrix Right) | Multiply all elements in Left with corresponding elements in Right. |
| 3 | clMatrix op_Multiply(clMatrix Left, TCplx Right) | Multiply all elements in Left with Right. |
| 4 | clMatrix op_Multiply(clMatrix Left, TOpenCLMtxVec Right) | Multiply all elements in Left with corresponding elements in Right. |
| 5 | clMatrix op_Multiply(clMatrix Left, clMatrix Right) | Multiply all elements in Left with corresponding elements in Right |
| 6 | clMatrix op_Multiply(clMatrix Left, clVector Right) | Multiplies Left with Right and returns result. |
| 7 | clMatrix op_Multiply(clMatrix Left, Double Right) | Multiply all elements in Left with Right. |
| 8 | clMatrix op_Multiply(clVector Left, clMatrix Right) | Multiplies Left with Right and returns result. |
| 9 | clMatrix op_Multiply(Double Left, clMatrix Right) | Multiply all elements in Right with Left. |
Overload 1: clMatrix op_Multiply(TCplx Left, clMatrix Right)
Multiply all elements in Right with Left.
Result: stored in self (calling object), returns self for chaining
Overload 2: clMatrix op_Multiply(TOpenCLMtxVec Left, clMatrix Right)
Multiply all elements in Left with corresponding elements in Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
| 2 | Right | clMatrix |
Result: stored in self (calling object), returns self for chaining
Overload 3: clMatrix op_Multiply(clMatrix Left, TCplx Right)
Multiply all elements in Left with Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: clMatrix op_Multiply(clMatrix Left, TOpenCLMtxVec Right)
Multiply all elements in Left with corresponding elements in Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clMatrix | |
| 2 | Right | TOpenCLMtxVec | source TOpenCLVector or TOpenCLMatrix |
Result: stored in self (calling object), returns self for chaining
Overload 5: clMatrix op_Multiply(clMatrix Left, clMatrix Right)
Multiply all elements in Left with corresponding elements in Right
Result: stored in self (calling object), returns self for chaining
Overload 6: clMatrix op_Multiply(clMatrix Left, clVector Right)
Multiplies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 7: clMatrix op_Multiply(clMatrix Left, Double Right)
Multiply all elements in Left with Right.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | clMatrix | |
| 2 | Right | Double | scalar |
Result: stored in self (calling object), returns self for chaining
Overload 8: clMatrix op_Multiply(clVector Left, clMatrix Right)
Multiplies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 9: clMatrix op_Multiply(Double Left, clMatrix Right)
Multiply all elements in Right with Left.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Left | Double | scalar |
| 2 | Right | clMatrix |
Result: stored in self (calling object), returns self for chaining