Math.Cosh(Single) Method es el método de clase MathF incorporado que devuelve el coseno hiperbólico de un argumento de valor único dado.
Sintaxis: public static float Cosh (float x);
Aquí, x es el número cuyo coseno hiperbólico se devolverá y el tipo de este parámetro es System.Single .
Valor devuelto: este método devuelve el coseno 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.Cosh(Single) Method using System; class GFG { // Main Method public static void Main(String[] args) { float num1 = 60.0f, num2 = 0.0f, num3 = 1.0f; // It returns the hyperbolic cosine // of specified angle in radian float coshvalue = MathF.Cosh(num1); Console.WriteLine("The Cosh of num1 = " + coshvalue); coshvalue = MathF.Cosh(num2); Console.WriteLine("The Cosh of num2 = " + coshvalue); coshvalue = MathF.Cosh(num3); Console.WriteLine("The Cosh of num3 = " + coshvalue); } }
The Cosh of num1 = 5.710037E+25 The Cosh of num2 = 1 The Cosh of num3 = 1.543081
Ejemplo 2:
Csharp
// C# program to illustrate the // MathF.Cosh(Single) Method using System; class GFG { // Main Method public static void Main() { float num1 = (30 * (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.Cosh(value); // Display the value Console.WriteLine("Cosh({0}) will be {1}", value, result); } }
Cosh(0.5235988) will be 1.140238 Cosh(NaN) will be NaN Cosh(-Infinity) will be Infinity Cosh(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