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