NFloat.Atan(NFloat) Method

Definition

Computes the arc-tangent of a value.

public:
 static System::Runtime::InteropServices::NFloat Atan(System::Runtime::InteropServices::NFloat x) = System::Numerics::ITrigonometricFunctions<System::Runtime::InteropServices::NFloat>::Atan;
public static System.Runtime.InteropServices.NFloat Atan (System.Runtime.InteropServices.NFloat x);
static member Atan : System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Atan (x As NFloat) As NFloat

Parameters

x
NFloat

The value, in radians, whose arc-tangent is to be computed.

Returns

The arc-tangent of x.

Implements

Remarks

This computes arctan(x) in the interval [-π / 2, +π / 2] radians.

Applies to