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