function ArcTan(const X: TOpenCLValue): TOpenCLValue;
Inverse tangens.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculate the inverse tangens for all calling object elements in-place. The return values are expressed in radians.
Examples
var a,b: clValue;
begin
b.Copy(0.5);
a.ArcTan(b);
end;