TOpenCLValue.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: TOpenCLValue.Tan, TOpenCLValue.ArcCot