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

Math.Sinh(Single) Method es el método de clase MathF incorporado que devuelve el seno hiperbólico de un argumento de valor único determinado. 
 

Sintaxis: public static float Sinh (float x); 
Aquí, x es el número cuyo seno hiperbólico se devolverá y el tipo de este parámetro es System.Single
 

Valor devuelto: este método devuelve el seno hiperbólico de x de tipo System.Single . Si x es igual a NegativeInfinity o PositiveInfinity, se devuelve PositiveInfinity. Si x es igual a NaN, se devuelve NaN.
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
 

Csharp

// C# program to illustrate the
// MathF.Sinh(Single) Method
using System;
 
class GFG {
 
    // Main Method
    public static void Main(String[] args)
    {
 
        float num1 = 45.0f, num2 = 0.0f, num3 = 1.0f;
 
        // It returns the hyperbolic sine of
        // specified angle in radian
        float sinhvalue = MathF.Sinh(num1);
        Console.WriteLine("The Sinh of num1 = " + sinhvalue);
 
        sinhvalue = MathF.Sinh(num2);
        Console.WriteLine("The Sinh of num2 = " + sinhvalue);
 
        sinhvalue = MathF.Sinh(num3);
        Console.WriteLine("The Sinh of num3 = " + sinhvalue);
    }
}
Producción: 

The Sinh of num1 = 1.746714E+19
The Sinh of num2 = 0
The Sinh of num3 = 1.175201

 

Ejemplo 2:
 

Csharp

// C# program to illustrate the
// MathF.Sinh(Single) Method
using System;
 
class GFG {
 
    // Main Method
    public static void Main()
    {
         
        float num1 = (60 * (MathF.PI)) / 180;
         
        // calling result() method
        result(num1);
        result(Single.NaN);
        result(Single.NegativeInfinity);
        result(Single.PositiveInfinity);
    }
 
    // defining result() method
    public static void result(float value)
    {
 
        // using the method
        float result = MathF.Sinh(value);
 
        // Display the value
        Console.WriteLine("Sinh({0}) will be {1}",
                                value, result);
    }
}
Producción: 

Sinh(1.047198) will be 1.249367
Sinh(NaN) will be NaN
Sinh(-Infinity) will be -Infinity
Sinh(Infinity) will be Infinity

 

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 *