function Cosh(const X: TOpenCLValue): TOpenCLValue;
Hyperbolic cosine.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the hyperbolic cosine of all caling object elements in-place.
Examples
var a,b: clValue;
begin
b.Copy(0.5);
a.Cosh(b);
end;
See Also: clValue.ArcCosh, clValue.SinhCosh