clValue.ArcCot Method

function ArcCot(const X: TOpenCLValue): TOpenCLValue;

Inverse cotangens.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the inverse cotangens for X. The returned value is expressed in radians.

Examples
var a,b: clValue;
begin
    b.Copy(0.5);
    a.ArcCot(b);
end;
See Also: clValue.Cot, clValue.ArcTan