TOpenCLValue.Cosh Method

function Cosh(const X: TOpenCLValue): TOpenCLValue;

Hyperbolic cosine.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the hyperbolic cosine of X.

Examples
var a,b: clValue;
begin
    b.Copy(0.5);
    a.Cosh(b);
end;
See Also: TOpenCLValue.ArcCosh, TOpenCLValue.SinhCosh