Share via


NFloat.Atan2(NFloat, NFloat) Método

Definición

Calcula la arco tangente del cociente de dos valores.

public:
 static System::Runtime::InteropServices::NFloat Atan2(System::Runtime::InteropServices::NFloat y, System::Runtime::InteropServices::NFloat x) = System::Numerics::IFloatingPointIeee754<System::Runtime::InteropServices::NFloat>::Atan2;
public static System.Runtime.InteropServices.NFloat Atan2 (System.Runtime.InteropServices.NFloat y, System.Runtime.InteropServices.NFloat x);
static member Atan2 : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function Atan2 (y As NFloat, x As NFloat) As NFloat

Parámetros

y
NFloat

Coordenada y de un punto.

x
NFloat

Coordenada x de un punto.

Devoluciones

Arco tangente de y dividido por x.

Implementaciones

Comentarios

Esto calcula arctan(y / x) en el intervalo [-π, +π] radianes.

Se aplica a