clValue.Tanh Method

function Tanh(const X: TOpenCLValue): TOpenCLValue;

Hyperbolic tangens.

#NameTypeDescription
1XTOpenCLValue

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