function ArcCot(const X: TOpenCLValue): TOpenCLValue;
Inverse cotangens.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
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