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