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