function Tanh(const X: TOpenCLValue): TOpenCLValue;
Hyperbolic tangens.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the hyperbolic tangens of X.
Examples
var a,b: clValue;
begin
b.Copy(0.5);
a.Tanh(b);
end;
See Also: clValue.ArcTanh, clValue.Coth