NFloat.AtanPi(NFloat) Method

Definition

Computes the arc-tangent of a value and divides the result by pi.

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

Parameters

x
NFloat

The value whose arc-tangent is to be computed.

Returns

The arc-tangent of x, divided by pi.

Implements

Remarks

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

Applies to