TOpenCLValue.ArcTan Method

function ArcTan(const X: TOpenCLValue): TOpenCLValue;

Inverse tangens.

#NameTypeDescription
1XTOpenCLValue

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;
See Also: TOpenCLValue.Tan, TOpenCLValue.ArcCot, TOpenCLValue.ArcTan2