Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Exp10(X: TOpenCLMatrix): clMatrix; | Result = the Exp10 function from the source and return the result |
| 2 | function Exp10(X: TOpenCLValue): clValue; | Result = the Exp10 function from the source and return the result |
| 3 | function Exp10(X: TOpenCLVector): clVector; | Result = the Exp10 function from the source and return the result |
Overload 1: function Exp10(X: TOpenCLMatrix): clMatrix;
Compute the Exp10 function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Exp10
Overload 2: function Exp10(X: TOpenCLValue): clValue;
Compute the Exp10 function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls clValue.Exp10
Examples
var a,b: clValue;
begin
b.Copy(8);
a.Exp10(b);
end;
Overload 3: function Exp10(X: TOpenCLVector): clVector;
Compute the Exp10 function from the source and return the result.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clVector.Exp10