Método MathF.Tan() en C# con ejemplos

MathF.Tan(Single) es un método de clase MathF incorporado que devuelve la tangente de un argumento de valor flotante dado (ángulo especificado).

Sintaxis: public static float Tan (float x);
Aquí, x es el ángulo (medido en radianes) cuya tangente se devolverá y el tipo de este parámetro es System.Single .

Valor devuelto: este método devolverá la tangente de x de tipo System.Single . Si x es igual a NegativeInfinity, PositiveInfinity o NaN , este método devuelve NaN .

Los siguientes programas ilustran el uso del método mencionado anteriormente:

Ejemplo 1:

// C# program to illustrate the
// MathF.Tan(Single) Method
using System;
  
class GFG {
  
    // Main Method
    public static void Main(String[] args)
    {
        float a = 152f;
  
        // converting the value to radians
        float b = (a * (MathF.PI)) / 180;
  
        // using method and displaying result
        Console.WriteLine(MathF.Tan(b));
        a = 105f;
  
        // converting value to radians
        b = (a * (MathF.PI)) / 180;
  
        // using method and displaying result
        Console.WriteLine(MathF.Tan(b));
        a = 76F;
  
        // converting value to radians
        b = (a * (MathF.PI)) / 180;
  
        // using method and displaying result
        Console.WriteLine(MathF.Tan(b));
    }
}
Producción:

-0.5317094
-3.732049
4.010781

Ejemplo 2: Para mostrar el funcionamiento del método MathF.Tan(Single) cuando el argumento es NaN o infinity .

// C# program to illustrate the
// MathF.Tan(Single) Method
using System;
  
class Geeks {
  
    // Main Method
    public static void Main(String[] args)
    {
  
        // Taking the positive, negative
        // infinity and NaN
        float positiveInfinity = float.PositiveInfinity;
        float negativeInfinity = float.NegativeInfinity;
        float nan = float.NaN;
  
        float result;
  
        // Here argument is negative infinity,
        // so the output will be NaN
        result = MathF.Tan(negativeInfinity);
        Console.WriteLine(result);
  
        // Here argument is positive infinity,
        // so the output will also be NaN
        result = MathF.Tan(positiveInfinity);
        Console.WriteLine(result);
  
        // Here the argument is NaN, so 
        // the output will be NaN
        result = MathF.Tan(nan);
        Console.WriteLine(result);
    }
}
Producción:

NaN
NaN
NaN

Publicación traducida automáticamente

Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *