NFloat.Asin(NFloat) Method

Definition

Computes the arc-sine of a value.

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

Parameters

x
NFloat

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

Returns

The arc-sine of x.

Implements

Remarks

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

Applies to