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