Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Rem(X: TOpenCLMatrix; Y: TOpenCLMatrix): clMatrix; | Return reminder after division of X by Y. |
| 2 | function Rem(X: TOpenCLValue; Y: TOpenCLValue): clValue; | Return reminder after division of X by Y. |
| 3 | function Rem(X: TOpenCLVector; Y: TOpenCLVector): clVector; | Return reminder after division of X by Y. |
Overload 1: function Rem(X: TOpenCLMatrix; Y: TOpenCLMatrix): clMatrix;
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | Y | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Rem
Overload 2: function Rem(X: TOpenCLValue; Y: TOpenCLValue): clValue;
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
| 2 | Y | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls clValue.Rem
Examples
var a,b,c: clValue;
begin
a.Copy(4);
b.Copy(3);
c.Rem(a,b); // c = Rem(4,3)
end;
Overload 3: function Rem(X: TOpenCLVector; Y: TOpenCLVector): clVector;
Return reminder after division of X by Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | Y | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clVector.Rem