Overload List
Overload 1: class operator Multiply(const Left: TCplx; const Right: clMatrix): clMatrix;
Multiply all elements in Right with Left.
Result: stored in self (calling object), returns self for chaining
Overload 2: class operator Multiply(const Left: TOpenCLMtxVec; const Right: clMatrix): clMatrix;
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: class operator Multiply(const Left: clMatrix; const Right: TCplx): clMatrix;
Multiply all elements in Left with Right.
Result: stored in self (calling object), returns self for chaining
Overload 4: class operator Multiply(const Left: clMatrix; const Right: TOpenCLMtxVec): clMatrix;
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: class operator Multiply(const Left: clMatrix; const Right: clMatrix): clMatrix;
Multiply all elements in Left with corresponding elements in Right
Result: stored in self (calling object), returns self for chaining
Overload 6: class operator Multiply(const Left: clMatrix; const Right: clVector): clMatrix;
Multiplies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 7: class operator Multiply(const Left: clMatrix; const Right: Double): clMatrix;
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: class operator Multiply(const Left: clVector; const Right: clMatrix): clMatrix;
Multiplies Left with Right and returns result.
Result: stored in self (calling object), returns self for chaining
Overload 9: class operator Multiply(const Left: Double; const Right: clMatrix): clMatrix;
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