Leggere in inglese

Condividi tramite


Math.Atan2(Double, Double) Metodo

Definizione

Restituisce l'angolo la cui tangente è il quoziente di due numeri specificati.

C#
public static double Atan2(double y, double x);

Parametri

y
Double

Coordinata y di un punto.

x
Double

Coordinata x di un punto.

Restituisce

Un angolo, θ, misurato in radianti, in modo che tan(θ) = y / x, dove (x, y) è un punto nel piano cartesiano. Osservare quanto segue:

  • Per (x, y) nel quadrante 1, 0 < θ < π/2.

  • Per (x, y) nel quadrante 2, π/2 < θ ≤ π.

  • Per (x, y) nel quadrante 3, -π ≤ θ < -π/2.

  • Per (x, y) nel quadrante 4, -π/2 < θ < 0.

Per i punti sui limiti dei quadranti, il valore restituito è il seguente:

  • Se y è 0 e x non è negativo, θ = 0.

  • Se y è 0 e x è negativo, θ = π.

  • Se y è positivo e x è 0, θ = π/2.

  • Se y è negativo e x è 0, θ = -π/2.

  • Se y è 0 e x è 0, θ = 0.

Se x o y è NaN o se x e y sono PositiveInfinity o NegativeInfinity, il metodo restituisce NaN.

Esempio

Nell'esempio seguente viene illustrato come calcolare l'arcotangente di un angolo e un vettore. Il valore risultante viene visualizzato nella console.

C#
// This example demonstrates Math.Atan()
//                           Math.Atan2()
//                           Math.Tan()
using System;

class Sample
{
    public static void Main()
    {
    double x = 1.0;
    double y = 2.0;
    double angle;
    double radians;
    double result;

// Calculate the tangent of 30 degrees.
    angle = 30;
    radians = angle * (Math.PI/180);
    result = Math.Tan(radians);
    Console.WriteLine("The tangent of 30 degrees is {0}.", result);

// Calculate the arctangent of the previous tangent.
    radians = Math.Atan(result);
    angle = radians * (180/Math.PI);
    Console.WriteLine("The previous tangent is equivalent to {0} degrees.", angle);

// Calculate the arctangent of an angle.
    String line1 = "{0}The arctangent of the angle formed by the x-axis and ";
    String line2 = "a vector to point ({0},{1}) is {2}, ";
    String line3 = "which is equivalent to {0} degrees.";

    radians = Math.Atan2(y, x);
    angle = radians * (180/Math.PI);

    Console.WriteLine(line1, Environment.NewLine);
    Console.WriteLine(line2, x, y, radians);
    Console.WriteLine(line3, angle);
    }
}
/*
This example produces the following results:

The tangent of 30 degrees is 0.577350269189626.
The previous tangent is equivalent to 30 degrees.

The arctangent of the angle formed by the x-axis and
a vector to point (1,2) is 1.10714871779409,
which is equivalent to 63.434948822922 degrees.
*/

Commenti

Il valore restituito è l'angolo del piano Cartesian formato dall'asse x e un vettore a partire dall'origine , (0,0) e terminando al punto, (x,y).

Questo metodo chiama il runtime C sottostante e il risultato esatto o l'intervallo di input valido può essere diverso tra sistemi operativi o architetture diverse.

Si applica a

Prodotto Versioni
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0