clValue.Cot Method

function Cot(const X: TOpenCLValue): TOpenCLValue;

Cotangens.

#NameTypeDescription
1XTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculate the cotangens of x.

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