TOpenCLValue.ArcCot Method

function ArcCot(const X: TOpenCLValue): TOpenCLValue;

Inverse cotangens.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the inverse cotangens of X. The return values are expressed in radians.

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