clValue.Cosh Method

function Cosh(const X: TOpenCLValue): TOpenCLValue;

Hyperbolic cosine.

#NameTypeDescription
1XTOpenCLValue

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